Commit d1abdf88 by Sébastien Eustace

Fix release workflow

parent 33dcb825
...@@ -144,6 +144,10 @@ jobs: ...@@ -144,6 +144,10 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@master uses: actions/checkout@master
- name: Get tag
id: tag
run: |
echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
- name: Download Linux release file - name: Download Linux release file
uses: actions/download-artifact@master uses: actions/download-artifact@master
with: with:
...@@ -229,7 +233,6 @@ jobs: ...@@ -229,7 +233,6 @@ jobs:
- name: Install Poetry - name: Install Poetry
run: | run: |
python get-poetry.py --preview -y python get-poetry.py --preview -y
$env:Path += ";$env:Userprofile\.poetry\bin"
- name: Install dependencies - name: Install dependencies
run: | run: |
source $HOME/.poetry/env source $HOME/.poetry/env
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment