Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release workflow #38

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
name: Build & Publish Package
on:
push:
tags:
- '*'
release:
types:
- published
workflow_dispatch:
concurrency:
group: ${{ github.event_name }}_${{ github.ref_name }}
permissions:
id-token: write
jobs:
# Build and verify wheels
build:
name: Build & Verify Package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Clean
run: |
python -c 'import shutil; [shutil.rmtree(p, True) for p in ("build", "dist")]'
python -c 'import pathlib, shutil; [shutil.rmtree(p, True) for p in pathlib.Path(".").glob("*.egg-info")]'
- name: Create Wheel and Dist
run: |
pip install build
python -m build --sdist --wheel --outdir dist/ .
ls -lat dist
- name: Check Wheel
shell: bash
run: |
pip install check-wheel-contents
check-wheel-contents dist/*.whl
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: Dist_${{ github.ref_name }}
path: dist
# Upload to Test PyPI on every tag
release-test-pypi:
needs: build
name: Publish PyPI TEST
environment: release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- name: Download packages built
uses: actions/download-artifact@v4
with:
name: Dist_${{ github.ref_name }}
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:
needs: build
name: Publish PyPI PROD
environment: release
if: github.event.action == 'published'
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: '3.12'
- name: Install test-package
run: |
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ mindlessgen==${{ github.ref_name }}
- name: Download packages built
uses: actions/download-artifact@v4
with:
name: Dist_${{ github.ref_name }}
path: dist
- name: Upload package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1