Skip to content

Commit

Permalink
Update pypi.yml GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
natezb committed Dec 31, 2024
1 parent 841d4d7 commit 0675598
Showing 1 changed file with 75 additions and 38 deletions.
113 changes: 75 additions & 38 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish to PyPI and TestPyPI
name: Build and publish to PyPI and TestPyPI

on:
push:
Expand All @@ -10,42 +10,79 @@ on:
- prereleased

jobs:
build-n-publish:
name: Build and publish to PyPI and TestPyPI
build:
name: Build distribution
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build distributions via setup.py
run: >-
python setup.py
sdist --formats=zip
bdist_wheel
- name: Publish to TestPyPI
if: ${{ github.event_name == 'release' && github.event.action == 'prereleased' }}
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/

- name: Publish to PyPI
if: ${{ github.event_name == 'release' && github.event.action == 'released' }}
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}

- name: Debug
run: |
echo "event_name ${{ github.event_name }}"
echo "event.action ${{ github.event.action }}"
- uses: actions/checkout@v4
with:
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build distributions via setup.py
run: >-
python setup.py
sdist --formats=zip
bdist_wheel
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/

publish-to-pypi:
name: Publish to PyPI
if: ${{ github.event_name == 'release' && github.event.action == 'released' }}
runs-on: ubuntu-latest

environment:
name: pypi
url: https://pypi.org/p/Instrumental-lib

permissions:
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

publish-to-testpypi:
name: Publish to TestPyPI
if: ${{ github.event_name == 'release' && github.event.action == 'prereleased' }}
runs-on: ubuntu-latest

environment:
name: testpypi
url: https://test.pypi.org/p/Instrumental-lib

permissions:
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/

- name: Publish to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

0 comments on commit 0675598

Please sign in to comment.