Skip to content

feat: use compatible is_relative_to for Python 3.8 #101

feat: use compatible is_relative_to for Python 3.8

feat: use compatible is_relative_to for Python 3.8 #101

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
release-pypi:
name: release-pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npx changelogithub
continue-on-error: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build artifacts
run: |
pipx run build
- name: Test Build
run: |
pip install dist/*.whl
pip uninstall -y pdm-backend
pip install dist/*.tar.gz
pip uninstall -y pdm-backend
- name: Upload to Pypi
run: |
pipx run twine upload --username __token__ --password ${{ secrets.PYPI_TOKEN }} dist/*