From 1a0c3f12507bc85da5dc40485a8a9a4e1c96a5dd Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 28 May 2021 10:27:01 +1000 Subject: [PATCH] Fixing var name --- .github/workflows/image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 8cbd8acb..3150c60e 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -31,8 +31,8 @@ jobs: - name: Create release metadata run: | # COPY'ed by Dockerfile into backend/ of the image, then read by the server in store.py - echo ${{ steps.vars.outputs.sha_short }} > backend/source.txt - echo ${{ steps.vars.outputs.tag }} > backend/tag.txt + echo ${{ github.sha }} > backend/source.txt + echo ${{ github.ref }} > backend/tag.txt - name: Test with pytest run: |