Skip to content

Version check (#9)

Version check (#9) #1

Workflow file for this run

name: Version Tag
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Install dependencies
run: |
pip install --editable .
- name: Fetch version
run: |
latest_version=$(pip show project_extraction | awk '/^Version: / {sub("^Version: ", ""); print}')
echo "LATEST_VERSION=$latest_version" >> $GITHUB_ENV
- name: Create tag
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git tag -a "$LATEST_VERSION" HEAD -m "Version v$LATEST_VERSION"
- name: Push changes
uses: ad-m/github-push-action@master
with:
force: true
tags: true