image build fixes, update job-utils #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: publish-stable | |
# Actions that take place on tags. | |
# Here we build a 'stable' image, regardless of tag value. | |
# ----------------- | |
# Control variables (GitHub Secrets) | |
# ----------------- | |
# | |
# At the GitHub 'organisation' or 'project' level you must have the following | |
# GitHub 'Repository Secrets' defined (i.e. via 'Settings -> Secrets'): - | |
# | |
# DOCKERHUB_USERNAME | |
# DOCKERHUB_TOKEN | |
# | |
# ----------- | |
# Environment (GitHub Environments) | |
# ----------- | |
# | |
# Environment (n/a) | |
on: | |
push: | |
branches: | |
- staging | |
jobs: | |
call-test: | |
uses: ./.github/workflows/test.yaml | |
call-build-without-push: | |
needs: call-test | |
uses: ./.github/workflows/build-all-with-push-option.yaml | |
secrets: inherit | |
with: | |
image-tag: latest | |
image-push: true |