Skip to content

Release 0.2.0

Release 0.2.0 #3

Workflow file for this run

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 }}"