chore(deps-dev): bump setuptools from 70.0.0 to 78.1.1 (#453) #33
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: | |
| - "*.*.*" | |
| jobs: | |
| Release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Get tag | |
| id: tag | |
| run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/} | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.x | |
| - name: Install and set up Poetry | |
| run: pipx install poetry | |
| - name: Build project for distribution | |
| run: poetry build | |
| - name: Check Version | |
| id: check-version | |
| run: | | |
| [[ "$(poetry version --short)" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] \ | |
| || echo ::set-output name=prerelease::true | |
| - name: Create Release | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| artifacts: "dist/*" | |
| draft: false | |
| allowUpdates: true | |
| generateReleaseNotes: true | |
| prerelease: steps.check-version.outputs.prerelease == 'true' | |
| - name: Publish to PyPI | |
| env: | |
| POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }} | |
| run: poetry publish |