Make dependencies from extras really optional (#279) #4
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: Tag release | |
| on: | |
| push: | |
| branches: [master] | |
| permissions: | |
| contents: write | |
| jobs: | |
| tag: | |
| if: "contains(github.event.head_commit.message, 'chore: bump version')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.BOT_PAT }} | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: '0.10.7' | |
| - name: Read version | |
| id: version | |
| run: echo "v=$(uv version --short)" >> $GITHUB_OUTPUT | |
| - name: Create tag | |
| run: | | |
| git tag v${{ steps.version.outputs.v }} | |
| git push origin v${{ steps.version.outputs.v }} |