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 7993e73 commit 5b87c09Copy full SHA for 5b87c09
.github/workflows/build.yaml
@@ -7,11 +7,11 @@ jobs:
7
runs-on: ubuntu-latest
8
9
steps:
10
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
11
- name: Set up Python env
12
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
13
with:
14
- python-version: 3.8
+ python-version: 3.11
15
16
- name: Install dependencies
17
run: |
@@ -23,6 +23,6 @@ jobs:
23
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
24
env:
25
FLIT_INDEX_URL: https://upload.pypi.org/legacy/
26
- FLIT_USERNAME: ${{ secrets.PYPI_USERNAME }}
27
- FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+ FLIT_USERNAME: __token__
+ FLIT_PASSWORD: ${{ secrets.PYPI_TOKEN }}
28
run: flit publish
0 commit comments