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 }}
240
+
- name: Re-Build & Push Image
241
+
uses: docker/build-push-action@v6
242
+
with:
243
+
push: true
244
+
tags: ${{ steps.meta.outputs.tags }}
245
+
labels: ${{ steps.meta.outputs.labels }}
246
+
sbom: true
247
+
provenance: true
242
248
243
249
# create-release:
244
250
# if: ${{ needs.docker-build-push.outputs.is-dryrun-version-bumped == 'true' }} # Only release when new version is available
0 commit comments