Skip to content

Commit

Permalink
fix: update workflow condition to allow stable branch for docker job
Browse files Browse the repository at this point in the history
  • Loading branch information
korewaChino committed Jan 10, 2025
1 parent d22e0c3 commit fc0d0dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/helm-oci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
docker:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/v')
if: contains(github.ref, 'refs/tags/v') || contains(github.ref, 'refs/heads/stable')
permissions:
contents: read
packages: write
Expand Down

0 comments on commit fc0d0dc

Please sign in to comment.