feat: Add tag_filter
as a way to pre-filter tags (#225)
#99
Workflow file for this run
This file contains 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 | |
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/* |