Skip to content

Commit 5502060

Browse files
committed
ci: fix release pipeline
It was broken because it still used an old version of poetry
1 parent 52ad5fb commit 5502060

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
tags:
66
- 'v*.*.*'
77

8+
env:
9+
POETRY_VERSION: "1.7.1"
10+
11+
812
jobs:
913
release:
1014
name: Release
@@ -21,7 +25,7 @@ jobs:
2125
- name: Install poetry
2226
uses: abatilo/[email protected]
2327
with:
24-
poetry-version: "1.1.14"
28+
poetry-version: ${{ env.POETRY_VERSION }}
2529

2630
- name: Update PATH
2731
run: echo "$HOME/.local/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)