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
push: ${{ 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
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 load -i companieshouse.tar
242
+
docker push ${{ steps.meta.outputs.tags }}
227
243
create-release:
228
244
if: ${{ needs.docker-build-push.outputs.is-dryrun-version-bumped == 'true' }} # Only release when new version is available
229
245
runs-on: ubuntu-latest
230
246
permissions:
231
247
contents: write # to be able to publish a GitHub release
232
248
needs:
233
-
- docker-build-push
249
+
- docker-build-scan-push
234
250
environment:
235
251
name: approve-release # Manual Approval to decide if we are ready to push tags and release
0 commit comments