🔖 bump version to 1.5.0 #30
Workflow file for this run
This file contains hidden or 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: | |
| - v* | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Python environment | |
| uses: ./.github/actions/setup-python | |
| - name: Get Version | |
| id: version | |
| run: | | |
| echo "VERSION=$(pdm show --version)" >> $GITHUB_OUTPUT | |
| echo "TAG_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | |
| echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
| - name: Check Version | |
| if: steps.version.outputs.VERSION != steps.version.outputs.TAG_VERSION | |
| run: exit 1 | |
| - name: Build and Publish Package | |
| run: | | |
| pdm publish | |
| gh release upload --clobber ${{ steps.version.outputs.TAG_NAME }} dist/*.tar.gz dist/*.whl | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |