Skip to content

Commit 5dc1a13

Browse files
authored
Use only production pypi server (#10)
1 parent c793f4d commit 5dc1a13

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,27 @@ jobs:
1717
TOX_PARALLEL_NO_SPINNER: 1
1818

1919
steps:
20+
2021
- name: Switch to using Python 3.8 by default
2122
uses: actions/setup-python@v2
2223
with:
2324
python-version: 3.8
25+
2426
- name: Install tox
2527
run: >-
2628
python3 -m
2729
pip install
2830
--user
2931
tox
32+
3033
- name: Check out src from Git
3134
uses: actions/checkout@v2
3235
with:
3336
fetch-depth: 0 # needed by setuptools-scm
37+
3438
- name: Build dists
3539
run: python -m tox
36-
- name: Publish to test.pypi.org
37-
if: >- # "create" workflows run separately from "push" & "pull_request"
38-
github.event_name == 'release'
39-
uses: pypa/gh-action-pypi-publish@master
40-
with:
41-
password: ${{ secrets.testpypi_password }}
42-
repository_url: https://test.pypi.org/legacy/
40+
4341
- name: Publish to pypi.org
4442
if: >- # "create" workflows run separately from "push" & "pull_request"
4543
github.event_name == 'release'

0 commit comments

Comments
 (0)