We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8575e53 commit 9c49866Copy full SHA for 9c49866
.github/workflows/upload-to-pypi.yml
@@ -4,6 +4,9 @@ on:
4
release:
5
types: [published]
6
7
+env:
8
+ POETRY_VERSION: "2.1.1"
9
+
10
jobs:
11
build:
12
runs-on: ubuntu-latest
@@ -13,13 +16,12 @@ jobs:
13
16
14
17
steps:
15
18
- uses: actions/checkout@v4
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
19
+ - name: Set up Python ${{ matrix.python-version }} + Poetry ${{ env.POETRY_VERSION }}
20
+ uses: "./.github/actions/poetry_setup"
21
with:
22
python-version: ${{ matrix.python-version }}
-
- - name: Install poetry
- run: curl -sSL https://install.python-poetry.org | python3 -
23
+ poetry-version: ${{ env.POETRY_VERSION }}
24
+ cache-key: core
25
26
- name: Set up cache
27
uses: actions/cache@v4
0 commit comments