Skip to content

Commit

Permalink
ci:build and publish at pypi and test-pypi (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
almutlue authored Aug 7, 2024
1 parent 97f50d0 commit 9954cad
Show file tree
Hide file tree
Showing 3 changed files with 122 additions and 40 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/pypi-publish.yaml

This file was deleted.

59 changes: 59 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
name: Publish Python Package

on:
release:
types: [published]

permissions:
contents: read

jobs:
build-module:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.9"

- name: Install Poetry
run: |
pip install poetry
poetry self add "poetry-dynamic-versioning[plugin]"
- name: Build source and wheel archives
run: poetry build

- name: Upload distributions
# https:/actions/upload-artifact
uses: actions/upload-artifact@v4
with:
name: release-dists
path: dist/

pypi-publish:
name: Upload release to PyPI
needs:
- build-module
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/modos_schema
permissions:
id-token: write
# IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Retrieve release distributions
# https:/actions/download-artifact
uses: actions/[email protected]
with:
name: release-dists
path: dist/
- name: Publish package distributions to PyPI
# https:/pypa/gh-action-pypi-publish
uses: pypa/gh-action-pypi-publish@release/v1
63 changes: 63 additions & 0 deletions .github/workflows/test-pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Workflow following resources at:
# - https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-pypi
# - https://packaging.python.org/en/latest/tutorials/packaging-projects/#uploading-the-distribution-archives
# Jobs are split to prevent unneccessary priviledge elevation through write permissions during building.

name: Build and publish on test-pypi

on:
workflow_dispatch:

permissions:
contents: read

jobs:
test-build:
name: Build python wheels
runs-on: ubuntu-latest
steps:
# https:/actions/checkout
- uses: actions/checkout@v4
- name: Set up Python
# https:/actions/setup-python
uses: actions/[email protected]
with:
python-version: "3.9"

- name: Install Poetry
run: |
pip install poetry
- name: Build source and wheel archives
run: poetry build

- name: Upload distributions
# https:/actions/upload-artifact
uses: actions/upload-artifact@v4
with:
name: test-dists
path: dist/

pypi-test-publish:
name: Upload release to PyPI Test
needs:
- test-build
runs-on: ubuntu-latest
environment:
name: test-pypi
url: https://test.pypi.org/p/modos_schema
permissions:
id-token: write
# IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Retrieve release distributions
# https:/actions/download-artifact
uses: actions/[email protected]
with:
name: test-dists
path: dist/
- name: Publish package distributions to TestPyPI
# https:/pypa/gh-action-pypi-publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

0 comments on commit 9954cad

Please sign in to comment.