Release 0.2.0 #3
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: Create Tag on pyproject.toml Update | |
on: | |
push: | |
paths: | |
- 'pyproject.toml' | |
permissions: | |
contents: write # Allows pushing new tags | |
jobs: | |
tag-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Extract version from pyproject.toml | |
id: extract_version | |
run: | | |
version=$(grep -Po '(?<=version = ")[^"]*' pyproject.toml) | |
echo "VERSION=$version" >> $GITHUB_ENV | |
- name: Create new tag | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git tag "v${{ env.VERSION }}" | |
git push origin "v${{ env.VERSION }}" |