v1.0.3 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Events | |
on: | |
release: | |
types: [published] | |
env: | |
GH_TOKEN: ${{ github.token }} | |
jobs: | |
build: | |
# disabled for this project since we don't want to publish it | |
if: false | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Set up code | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: 🐍 Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: .python-version | |
cache: pip | |
cache-dependency-path: setup.py | |
- name: 📦 Build package | |
run: pipx run build | |
- name: ⬆️ Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artifacts | |
path: dist | |
retention-days: 1 | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: prod | |
url: https://pypi.org/project/<project-name> | |
permissions: | |
id-token: write | |
steps: | |
- name: ⬇️ Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-artifacts | |
path: dist | |
- name: 🚀 Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
notify: | |
name: Notifications | |
runs-on: ubuntu-latest | |
needs: publish | |
permissions: | |
contents: read | |
pull-requests: write | |
issues: write | |
steps: | |
- name: Release Notifier | |
uses: agrc/release-issue-notifications-action@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |