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 8525e8a commit eff854cCopy full SHA for eff854c
.github/workflows/build-docker-artifacts.yml
@@ -234,6 +234,7 @@ jobs:
234
branch: ${{ inputs.branch }}
235
236
- name: Build image
237
+ if: ${{ false }} # TODO: Remove
238
uses: docker/build-push-action@v6
239
with:
240
context: .
@@ -301,7 +302,8 @@ jobs:
301
302
continue-on-error: false
303
304
- name: Push image
- if: ${{ matrix.component.skip_push != true }}
305
306
+ # if: ${{ matrix.component.skip_push != true }}
307
# Instead of the docker/build-push-action@v6 which will rebuild the image, just push it directly
308
run: docker push ${{ matrix.component.image_ref }}
309
0 commit comments