Skip to content

Commit

Permalink
initial pip publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ralequi committed Jun 24, 2022
1 parent 5826e9f commit 01140fc
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Install pypa/pdoc
run: >-
python -m
pip install
pdoc
--user
- name: Generate doc
run: >-
python -m
pdoc -o docs -n pystorcli
- name: Build the test wheel and a source tarball
run: >-
PACKAGE_NAME=pystorcli2 python -m
build
--sdist
--wheel
--outdir distTest/
.
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
packages_dir: distTest/
skip_existing: true
- name: Build the binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 01140fc

Please sign in to comment.