diff options
| author | 2024-07-19 22:31:22 +0100 | |
|---|---|---|
| committer | 2024-07-19 22:31:22 +0100 | |
| commit | 75e58de6dee62c284a4048fdf1d982c8e052c23b (patch) | |
| tree | 336b0dab2a0507c5cd1be47276b86b0f8d34e3fb | |
| parent | Don't use deprecated ::set-output 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 2d2691d..d8e3134 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.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.tag }}" +          images: "ghcr.io/python-discord/forms-backend:${{ steps.sha_tag.outputs.sha_tag }}"  |