diff options
author | 2023-03-21 09:22:11 +0100 | |
---|---|---|
committer | 2023-03-21 09:22:11 +0100 | |
commit | 36c9988028accc5eefaa61a630ccbb355fdd0067 (patch) | |
tree | 81f33a70d16876ef51ef623283cd0dd2facb444b /.github/workflows | |
parent | fix indentation for k8s-deploy job's inputs (diff) |
use provided sha-tag from input
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-deploy.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-deploy.yaml b/.github/workflows/build-deploy.yaml index 9899d942..5007110d 100644 --- a/.github/workflows/build-deploy.yaml +++ b/.github/workflows/build-deploy.yaml @@ -47,7 +47,7 @@ jobs: cache-to: type=inline tags: | ghcr.io/python-discord/site:latest - ghcr.io/python-discord/site:${{ steps.sha_tag.outputs.tag }} + ghcr.io/python-discord/site:${{ inputs.sha_tag }} build-args: | git_sha=${{ github.sha }} @@ -79,7 +79,7 @@ jobs: with: manifests: | namespaces/default/site/deployment.yaml - images: 'ghcr.io/python-discord/site:${{ steps.sha_tag.outputs.tag }}' + images: 'ghcr.io/python-discord/site:${{ inputs.sha_tag }}' - name: Purge Cloudflare Edge Cache uses: jakejarvis/cloudflare-purge-action@master |