diff options
author | 2023-03-21 09:56:56 +0000 | |
---|---|---|
committer | 2023-03-21 09:56:56 +0000 | |
commit | 06a6aecdf65de083a527c307645aca07a250a6ab (patch) | |
tree | 0f0eefd8069147db31315f4fd13df4cf963405d8 /.github/workflows/static-preview.yaml | |
parent | Merge pull request #899 from shtlrs/group-all-workflows (diff) |
Use the correct id for the sha-tag input
Diffstat (limited to '.github/workflows/static-preview.yaml')
-rw-r--r-- | .github/workflows/static-preview.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
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 |