Skip to content

Commit

Permalink
Ignore change detection on chart builds for new tags
Browse files Browse the repository at this point in the history
  • Loading branch information
sd109 committed Feb 5, 2024
1 parent 05cf9ba commit 53bd6af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-push-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest
# Only build and push the chart if chart files have changed
needs: [changes]
if: ${{ needs.changes.outputs.chart == 'true' }}
if: ${{ needs.changes.outputs.chart == 'true' || github.ref_type == 'tag' }}
steps:
- name: Check out the repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 53bd6af

Please sign in to comment.