Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Nov 20, 2019
1 parent 33dcb82 commit d1abdf8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -144,6 +144,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Get tag
id: tag
run: |
echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
- name: Download Linux release file
uses: actions/download-artifact@master
with:
Expand Down Expand Up @@ -229,7 +233,6 @@ jobs:
- name: Install Poetry
run: |
python get-poetry.py --preview -y
$env:Path += ";$env:Userprofile\.poetry\bin"
- name: Install dependencies
run: |
source $HOME/.poetry/env
Expand Down

0 comments on commit d1abdf8

Please sign in to comment.