Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Commit 3f41ca6

Browse files
committed
Merge branch 'hotfix/fix-deploy-action'
2 parents 868d1a1 + ad172fa commit 3f41ca6

1 file changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/publish-to-test-pypi.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -15,26 +15,26 @@ jobs:
1515
uses: actions/setup-python@v1
1616
with:
1717
python-version: 3.9
18-
- name: Install pypa/build
19-
run: >-
20-
python -m
21-
pip install
22-
build
23-
- name: Build a binary wheel and a source tarball
24-
run: >-
25-
python -m
26-
build
27-
--sdist
28-
--wheel
29-
--outdir dist/
30-
.
31-
- name: Publish distribution 📦 to Test PyPI
32-
uses: pypa/gh-action-pypi-publish@master
33-
with:
34-
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
35-
repository_url: https://test.pypi.org/legacy/
36-
- name: Publish distribution 📦 to PyPI
37-
if: startsWith(github.ref, 'refs/tags')
38-
uses: pypa/gh-action-pypi-publish@master
39-
with:
40-
password: ${{ secrets.PYPI_API_TOKEN }}
18+
- name: Install pypa/build
19+
run: >-
20+
python -m
21+
pip install
22+
build
23+
- name: Build a binary wheel and a source tarball
24+
run: >-
25+
python -m
26+
build
27+
--sdist
28+
--wheel
29+
--outdir dist/
30+
.
31+
- name: Publish distribution 📦 to Test PyPI
32+
uses: pypa/gh-action-pypi-publish@master
33+
with:
34+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
35+
repository_url: https://test.pypi.org/legacy/
36+
- name: Publish distribution 📦 to PyPI
37+
if: startsWith(github.ref, 'refs/tags')
38+
uses: pypa/gh-action-pypi-publish@master
39+
with:
40+
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)