From c0d8777a7a706a19f8c63f838079059994b4b0fb Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Wed, 13 Jan 2021 18:45:10 +0100 Subject: [PATCH] unique variables in github action --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d848cba1..2ddda2142 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,14 +57,14 @@ jobs: - name: Get git tag run: | echo "::set-output name=GIT_TAG::$(git describe --tags $(git rev-list --tags --max-count=1))" - id: extract_variables + id: extract_tag - name: Build and push uses: docker/build-push-action@v2 with: context: . file: ./Dockerfile push: true - tags: ${{ github.repository }}:${{ steps.extract_variables.outputs.GIT_TAG }} + tags: ${{ github.repository }}:${{ steps.extract_tag.outputs.GIT_TAG }} cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache