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.
2 parents 3edaa83 + 5c8a7a2 commit 89dd09cCopy full SHA for 89dd09c
.github/workflows/publish.yml
@@ -18,8 +18,11 @@ jobs:
18
run: pip install flit
19
- name: Install Dependencies
20
run: make install
21
+ - name: Install build dependencies
22
+ run: pip install build
23
+ - name: Build distribution
24
+ run: python -m build
25
- name: Publish
- env:
- FLIT_USERNAME: ${{ secrets.FLIT_USERNAME }}
- FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }}
- run: flit publish
26
+ uses: pypa/[email protected]
27
+ with:
28
+ password: ${{ secrets.PYPI_API_TOKEN }}
.github/workflows/test.yml
@@ -14,7 +14,7 @@ jobs:
14
- name: Set up Python
15
uses: actions/setup-python@v5
16
with:
17
- python-version: 3.8
+ python-version: 3.9
- name: Install Flit
0 commit comments