We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817af7c commit dd0d314Copy full SHA for dd0d314
.github/workflows/publish.yml
@@ -15,9 +15,11 @@ jobs:
15
- name: Set up Python
16
uses: actions/setup-python@v5
17
with:
18
- python-version: "3.x"
+ python-version: "3.11" # Use a version compatible with >=3.8,<3.12
19
- name: Install Poetry
20
uses: snok/install-poetry@v1
21
+ with:
22
+ version: 1.8.2 # Match local version
23
- name: Bump version
24
run: poetry version $(git describe --tags --abbrev=0)
25
- name: Build a binary wheel and a source tarball
@@ -37,7 +39,7 @@ jobs:
37
39
runs-on: ubuntu-latest
38
40
environment:
41
name: release
- url: https://pypi.org/p/healthchain # Replace <package-name> with your PyPI project name
42
+ url: https://pypi.org/p/healthchain
43
permissions:
44
id-token: write # IMPORTANT: mandatory for trusted publishing
45
steps:
0 commit comments