diff options
| -rw-r--r-- | .github/workflows/build-deploy.yaml | 4 | ||||
| -rw-r--r-- | .github/workflows/static-preview.yaml | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/.github/workflows/build-deploy.yaml b/.github/workflows/build-deploy.yaml index 5007110d..440cae60 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:${{ inputs.sha_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:${{ inputs.sha_tag }}' +          images: 'ghcr.io/python-discord/site:${{ inputs.sha-tag }}'        - name: Purge Cloudflare Edge Cache          uses: jakejarvis/cloudflare-purge-action@master diff --git a/.github/workflows/static-preview.yaml b/.github/workflows/static-preview.yaml index c19ba05c..277a0ffa 100644 --- a/.github/workflows/static-preview.yaml +++ b/.github/workflows/static-preview.yaml @@ -38,7 +38,7 @@ jobs:            cache-to: type=inline            tags: |              ghcr.io/python-discord/static-site:latest -            ghcr.io/python-discord/static-site:${{ inputs.sha_tag }} +            ghcr.io/python-discord/static-site:${{ inputs.sha-tag }}            build-args: |              git_sha=${{ github.sha }}              STATIC_BUILD=TRUE @@ -48,7 +48,7 @@ jobs:          run: |            mkdir docker_build \            && docker run --entrypoint /bin/echo --name site \ -          ghcr.io/python-discord/static-site:${{ inputs.sha_tag }} \ +          ghcr.io/python-discord/static-site:${{ inputs.sha-tag }} \            && docker cp site:/app docker_build/        # Build directly to a local folder | 
