You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# if: ${{ github.event_name != 'pull_request' && steps.bump-version.outputs.is-dryrun-version-bumped == 'true' }} # Only push on main branch & when version is bumped with dryrun. We will create tags and creates separately after proper testing
240
-
run: |
241
-
docker push ${{ steps.meta.outputs.tags }}
242
+
- name: Re-Build & Push Image
243
+
uses: docker/build-push-action@v6
244
+
with:
245
+
push: true
246
+
tags: ${{ steps.meta.outputs.tags }}
247
+
labels: ${{ steps.meta.outputs.labels }}
248
+
sbom: true
249
+
provenance: true
242
250
243
251
# create-release:
244
252
# if: ${{ needs.docker-build-push.outputs.is-dryrun-version-bumped == 'true' }} # Only release when new version is available
0 commit comments