Fix missing release version on files

This commit is contained in:
Gunnar Skjold 2020-03-25 20:37:15 +01:00
parent c936f605d6
commit 7b52efd332

View File

@ -18,7 +18,8 @@ jobs:
id: release_tag
env:
GITHUB_REF: ${{ github.ref }}
run: echo ::set-env name=GITHUB_TAG::$(echo ${GITHUB_REF:11})
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:11})
run: echo ::set-env name=GITHUB_TAG::$(echo ${GITHUB_REF##*/})
- name: Cache Python dependencies
uses: actions/cache@v1
with: