We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ca80a commit 24b4f2cCopy full SHA for 24b4f2c
.github/workflows/build-push-artifacts.yml
@@ -41,7 +41,7 @@ jobs:
41
packages: write # required for pushing container images
42
security-events: write # required for pushing SARIF files
43
needs: changes
44
- if: ${{ needs.changes.outputs.images == 'true' || github.ref_type == 'tag' }}
+ if: ${{ github.ref_type == 'tag' || needs.changes.outputs.images == 'true' }}
45
strategy:
46
matrix:
47
include:
@@ -86,7 +86,7 @@ jobs:
86
runs-on: ubuntu-latest
87
# Only build and push the chart if chart files have changed
88
needs: [changes]
89
- if: ${{ needs.changes.outputs.chart == 'true' || github.ref_type == 'tag' }}
+ if: ${{ github.ref_type == 'tag' || needs.changes.outputs.chart == 'true' }}
90
steps:
91
- name: Check out the repository
92
uses: actions/checkout@v4
0 commit comments