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 e918caa commit 53a1385Copy full SHA for 53a1385
.github/workflows/publish.yml
@@ -11,13 +11,15 @@ env:
11
jobs:
12
publish:
13
runs-on: ubuntu-latest
14
+ permissions:
15
+ id-token: write
16
steps:
17
- uses: actions/checkout@v4
18
- uses: actions/setup-python@v4
19
with:
20
python-version: "3.11"
21
- uses: abatilo/actions-poetry@v2
- - name: Publish package
- run: |
22
- poetry install -n --no-dev
23
- poetry publish --build -u __token__ -p ${{ secrets.PYPI_SECRET }}
+ - name: Build package
+ run: poetry build
24
+ - name: Publish package to PyPI
25
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments