You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
5 months ago
|
---
|
||
|
name: release
|
||
|
on:
|
||
|
pull_request:
|
||
|
types:
|
||
|
- closed
|
||
|
branches:
|
||
|
- master
|
||
|
paths:
|
||
|
- "pyproject.toml"
|
||
|
env:
|
||
|
POETRY_VERSION: "1.4.2"
|
||
|
jobs:
|
||
|
if_release:
|
||
|
if: |
|
||
|
${{ github.event.pull_request.merged == true }}
|
||
|
&& ${{ contains(github.event.pull_request.labels.*.name, 'release') }}
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Install poetry
|
||
|
run: pipx install poetry==$POETRY_VERSION
|
||
|
- name: Set up Python 3.9
|
||
|
uses: actions/setup-python@v5
|
||
|
with:
|
||
|
python-version: "3.9"
|
||
|
cache: "poetry"
|
||
|
- name: Build project for distribution
|
||
|
run: poetry build
|
||
|
- name: Check Version
|
||
|
id: check-version
|
||
|
run: |
|
||
|
echo version=$(poetry version --short) >> $GITHUB_OUTPUT
|
||
|
- name: Create Release
|
||
|
uses: ncipollo/release-action@v1
|
||
|
with:
|
||
|
artifacts: "dist/*"
|
||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
draft: false
|
||
|
generateReleaseNotes: true
|
||
|
tag: v${{ steps.check-version.outputs.version }}
|
||
|
commit: master
|
||
|
- name: Publish to PyPI
|
||
|
env:
|
||
|
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
|
||
|
run: |-
|
||
|
poetry publish
|