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.
2 parents 929376f + fa0e2cf commit 376173aCopy full SHA for 376173a
.github/workflows/on_call_build_site.yaml
@@ -30,8 +30,10 @@ jobs:
30
password: ${{ github.token }}
31
32
- name: Build base image
33
+ env:
34
+ push_tag: ${{inputs.push_tag || 'temp' }}
35
run: |
- docker build --target base -t ghcr.io/orionrobots/orionrobots-site.base:${{ inputs.push_tag || 'temp' }} .
36
+ docker build --target base -t "ghcr.io/orionrobots/orionrobots-site.base:${push_tag}" .
37
38
- name: Build the site with docker compose
39
@@ -57,5 +59,7 @@ jobs:
57
59
58
60
- name: Push base image
61
if: inputs.push_tag
62
63
+ push_tag: ${{inputs.push_tag }}
64
- docker push ghcr.io/orionrobots/orionrobots-site.base:${{ inputs.push_tag }}
65
+ docker push "ghcr.io/orionrobots/orionrobots-site.base:${push_tag}"
0 commit comments