Skip to content

Commit

Permalink
Use only production pypi server (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored May 3, 2022
1 parent c793f4d commit 5dc1a13
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,27 @@ jobs:
TOX_PARALLEL_NO_SPINNER: 1

steps:

- name: Switch to using Python 3.8 by default
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: Install tox
run: >-
python3 -m
pip install
--user
tox
- name: Check out src from Git
uses: actions/checkout@v2
with:
fetch-depth: 0 # needed by setuptools-scm

- name: Build dists
run: python -m tox
- name: Publish to test.pypi.org
if: >- # "create" workflows run separately from "push" & "pull_request"
github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.testpypi_password }}
repository_url: https://test.pypi.org/legacy/

- name: Publish to pypi.org
if: >- # "create" workflows run separately from "push" & "pull_request"
github.event_name == 'release'
Expand Down

0 comments on commit 5dc1a13

Please sign in to comment.