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 df3046f commit 368bdc9Copy full SHA for 368bdc9
.github/workflows/publish-to-test-pypi.yml
@@ -3,14 +3,15 @@ name: Publish tagged releases to PyPI and TestPyPI
3
on: push
4
5
jobs:
6
- deploy:
+ build-n-publish:
7
+ name: Build and publish Python distributions to PyPI and TestPyPI
8
runs-on: ubuntu-latest
9
steps:
- - uses: actions/checkout@v1
10
- - name: Set up Python
11
- uses: actions/setup-python@v1
12
- with:
13
- python-version: "3.9"
+ - uses: actions/checkout@v1
+ - name: Set up Python
+ uses: actions/setup-python@v1
+ with:
14
+ python-version: "3.9"
15
16
- name: Install pypa/build
17
run: >-
@@ -36,4 +37,4 @@ jobs:
36
37
if: startsWith(github.ref, 'refs/tags')
38
uses: pypa/gh-action-pypi-publish@release/v1
39
with:
- password: ${{ secrets.PYPI_API_TOKEN }}
40
+ password: ${{ secrets.PYPI_API_TOKEN }}
0 commit comments