diff options
author | 2020-11-17 17:21:13 +0100 | |
---|---|---|
committer | 2020-11-17 17:21:13 +0100 | |
commit | 0b35f06657e110ccd308c3f4b2601cb924880acb (patch) | |
tree | 53aecb6643f0c7bdd5fd425d82d8c4659d9d6eb2 | |
parent | Include final build stage (diff) |
Fix error due to referencing value before it's set
-rw-r--r-- | .github/workflows/lint-test.yaml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index d28d8c4..7f1bcbc 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -11,7 +11,6 @@ jobs: runs-on: ubuntu-latest env: DOCKER_BUILDKIT: 1 - BASE_IMAGE: ghcr.io/python-discord/snekbox-base:${{ steps.sha_tag.outputs.tag }} steps: - name: Create SHA Container Tag @@ -50,7 +49,7 @@ jobs: load: true cache-from: type=local,src=/tmp/.base-buildx-cache, cache-to: type=local,dest=/tmp/.base-buildx-cache, - tags: ${{ env.BASE_IMAGE }} + tags: ghcr.io/python-discord/snekbox-base:${{ steps.sha_tag.outputs.tag }} - name: Show Containers run: docker image ls @@ -101,9 +100,6 @@ jobs: pip install coveralls~=2.1 coveralls - - name: Push base image - run: docker push ghcr.io/python-discord/snekbox-base:${{ steps.sha_tag.outputs.tag }} - - name: Cache Final Image Layers uses: actions/cache@v2 with: |