File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -105,26 +105,22 @@ jobs:
105105 --lint-conf lintconf.yaml
106106
107107 - name : Create kind cluster
108- if : steps.list-changed.outputs.changed == 'true'
109108 uses : helm/kind-action@v1
110109
111110 - name : Log in to GHCR
112- if : steps.list-changed.outputs.changed == 'true'
113111 uses : docker/login-action@v3
114112 with :
115113 registry : ghcr.io
116114 username : ${{ github.actor }}
117115 password : ${{ secrets.GITHUB_TOKEN }}
118116
119117 - name : Load image into kind
120- if : steps.list-changed.outputs.changed == 'true'
121118 run : |
122119 docker pull ghcr.io/${{ github.repository }}:pr-${{ github.event.pull_request.number }}
123120 kind load docker-image ghcr.io/${{ github.repository }}:pr-${{ github.event.pull_request.number }} --name chart-testing
124121
125122 - name : Run chart-testing (install)
126123 id : chart-testing-install
127- if : steps.list-changed.outputs.changed == 'true'
128124 run : |
129125 ct install --github-groups \
130126 --chart-dirs kubernetes/chart \
@@ -133,7 +129,7 @@ jobs:
133129 --skip-clean-up
134130
135131 - name : Fetch logs
136- if : steps.list-changed.outputs.changed == 'true' && ( success() || failure() )
132+ if : success() || failure()
137133 continue-on-error : true
138134 run : |
139135 namespace=$(helm list --all-namespaces --output json \
You can’t perform that action at this time.
0 commit comments