Skip to content

ci: sync with template repository #9

ci: sync with template repository

ci: sync with template repository #9

Workflow file for this run

name: Release
on:
push:
branches:
- main
env:
PYTHON_VERSION: "3.11"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
name: Build Package
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Install Dependencies
run: poetry install
- name: Build Package
run: poetry build
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: package
path: dist/*
release:
name: Create GitHub Release
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
outputs:
created: ${{ steps.release.outputs.releases_created }}
tag: ${{ steps.release.outputs.tag_name }}
steps:
- id: release
name: Create GitHub Release
uses: google-github-actions/release-please-action@v4
with:
release-type: python
upload:
name: Upload Release Assets
permissions:
contents: write
needs:
- build
- release
if: needs.release.outputs.created == 'true'
runs-on: ubuntu-latest
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
merge-multiple: true
- name: Upload Release Assets
run: |
gh release upload "${{ needs.release.outputs.tag }}" artifacts/* --clobber
publish:
name: Publish to PyPI
needs:
- release
if: needs.release.outputs.created == 'true'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Install Dependencies
run: poetry install
- name: Publish to PyPI
run: poetry publish --build
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}