Skip to content

Commit

Permalink
Add pypi-package workflow (#3)
Browse files Browse the repository at this point in the history
Using trusted-publishers to publish to pypi
  • Loading branch information
alexrudy authored Mar 26, 2024
1 parent f4978e4 commit 7ca3eb6
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
---
name: Build & maybe upload PyPI package

on:
push:
branches: [main]
tags: ["*"]
release:
types:
- published
workflow_dispatch:

permissions:
contents: read
id-token: write

env:
FORCE_COLOR: "1" # Make tools pretty.
PIP_DISABLE_PIP_VERSION_CHECK: "1"
PIP_NO_PYTHON_VERSION_WARNING: "1"

jobs:
# Always build & lint package.
build-package:
name: Build & verify package
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: hynek/build-and-inspect-python-package@v2

# Upload to Test PyPI on every commit on main.
release-test-pypi:
name: Publish in-dev package to test.pypi.org
if: github.repository_owner == 'alexrudy' && github.event_name == 'push' && github.ref == 'refs/heads/main'
environment: test-pypi-release
runs-on: ubuntu-latest
needs: build-package

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v4
with:
name: Packages
path: dist

- name: Upload package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

# Upload to real PyPI on GitHub Releases.
release-pypi:
name: Publish released package to pypi.org
if: github.repository_owner == 'alexrudy' && github.event.action == 'published'
environment: pypi-release
runs-on: ubuntu-latest
needs: build-package

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v4
with:
name: Packages
path: dist

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

0 comments on commit 7ca3eb6

Please sign in to comment.