Skip to content

Commit

Permalink
Fix missing release version on files
Browse files Browse the repository at this point in the history
  • Loading branch information
gskjold committed Mar 25, 2020
1 parent c936f60 commit 7b52efd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 7b52efd

Please sign in to comment.