Skip to content

Commit

Permalink
fix github action syntax for publishing to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
mathandy committed Nov 10, 2021
1 parent ca094fe commit 8ad7458
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/publish-on-pypi-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Publish to TestPyPI

on:
push:
branches:
- master

jobs:
build-n-publish:
name: Build and publish to TestPyPI
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- name: Set up Python 3
uses: actions/setup-python@v1
with:
python-version: 3
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
skip_existing: true
password: ${{ secrets.TESTPYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
6 changes: 4 additions & 2 deletions .github/workflows/publish-on-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Publish to TestPyPI and if new version PyPI

on:
push:
branches: [ master ]
tags:
- 'v*'

jobs:
build-n-publish:
name: Build and publish to TestPyPI and PyPI
Expand Down Expand Up @@ -37,4 +39,4 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 8ad7458

Please sign in to comment.