Skip to content

Fix pipeline

Fix pipeline #30

Workflow file for this run

name: Release Package
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: 3.9
cache: true
- name: Setup PDM bump plugin
run: |
pdm self add pdm-bump
- name: Check if there is a parent commit
id: check-parent-commit
run: |
echo "name=sha::$(git rev-parse --verify --quiet HEAD^)" >> $GITHUB_OUTPUT
- name: Detect and tag new version
id: check-version
if: steps.check-parent-commit.outputs.sha
uses: salsify/[email protected]
with:
version-command: |-
pdm show --version
- name: Bump version for developmental release
if: "! steps.check-version.outputs.tag"
run: |
pdm bump dev
- name: Install dependencies with PDM
run: |
pdm install
- name: Build package
run: |
pdm build
- name: Publish package on PyPI
if: steps.check-version.outputs.tag
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
- name: Publish package on TestPyPI
if: "! steps.check-version.outputs.tag"
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository-url: https://test.pypi.org/legacy/
- name: Publish the release notes
uses: release-drafter/[email protected]
with:
publish: ${{ steps.check-version.outputs.tag != '' }}
tag: ${{ steps.check-version.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}