Version check #2
Workflow file for this run
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: Version Check | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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: Build and check version | |
run: | | |
git fetch --tags | |
current=$(git describe --tags --match="[0-9]*" HEAD) | |
new=$(pip show project_extraction | awk '/^Version: / {sub("^Version: ", ""); print}') | |
python <<EOP | |
import sys; from packaging import version | |
sys.exit(int(version.parse("$current") >= version.parse("$new"))) | |
EOP | |
- name: Push tag | |
run: | | |
git tag -a "$new" HEAD -m "Version v$new" | |
git push origin "$new" |