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 cf28bf5 commit 1ade435Copy full SHA for 1ade435
.github/workflows/publish-to-pypi.yml
@@ -9,12 +9,14 @@ jobs:
9
name: Build and Publish to PyPI
10
runs-on: ubuntu-latest
11
if: startsWith(github.ref, 'refs/tags')
12
+ permissions:
13
+ id-token: write
14
steps:
15
- uses: actions/checkout@master
- - name: Set up Python 3.10
- uses: actions/setup-python@v3
16
+ - name: Set up Python 3.13
17
+ uses: actions/setup-python@v5
18
with:
- python-version: "3.10"
19
+ python-version: "3.13"
20
- name: Install pypa/build
21
run: >-
22
python -m pip install --user ".[build]"
@@ -23,5 +25,3 @@ jobs:
23
25
python -m build --sdist --wheel --outdir dist/
24
26
- name: Publish Distribution to PyPI
27
uses: pypa/gh-action-pypi-publish@release/v1
- with:
- password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments