diff options
author | 2024-07-19 22:32:40 +0100 | |
---|---|---|
committer | 2024-07-19 22:32:40 +0100 | |
commit | bb3b3310b578bd5e470b2c2d45a7849598cbc674 (patch) | |
tree | cb06e32221d9fd0af1d059a119e7703aa5f3b9d1 | |
parent | Reference the correct env var in CI (diff) |
Reference the correct env var in CI
-rw-r--r-- | .github/workflows/forms-backend.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/forms-backend.yml b/.github/workflows/forms-backend.yml index d8e3134..ecf48f9 100644 --- a/.github/workflows/forms-backend.yml +++ b/.github/workflows/forms-backend.yml @@ -87,7 +87,7 @@ jobs: cache-to: type=inline tags: | ghcr.io/python-discord/forms-backend:latest - ghcr.io/python-discord/forms-backend:${{ steps.sha_tag.outputs.sha_tag }} + ghcr.io/python-discord/forms-backend:${{ steps.sha_tag.outputs.sha-tag }} build-args: | git_sha=${{ github.sha }} @@ -121,4 +121,4 @@ jobs: namespace: forms manifests: | deployment.yaml - images: "ghcr.io/python-discord/forms-backend:${{ steps.sha_tag.outputs.sha_tag }}" + images: "ghcr.io/python-discord/forms-backend:${{ steps.sha_tag.outputs.sha-tag }}" |