Skip to content

Release v2.1.3

Release v2.1.3 #55

Workflow file for this run

name: Run checks in main and release
on:
pull_request:
branches:
- '*release*'
- main
jobs:
ci:
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
uses: AllenNeuralDynamics/.github/.github/workflows/test-ci.yml@main
with:
python-version: ${{ matrix.python-version }}
verify_version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Check version incremented
run: |
pkg_name=$(grep -P 'version = \{attr = .*\}' pyproject.toml | grep -oP '\w+.__version__')
init_file="./src/${pkg_name//.__version__}/__init__.py"
pkg_version=$(grep -Po '[0-9]+\.[0-9]+\.[0-9]+' "$init_file")
latest_tag=$(git ls-remote --tags --refs --sort="v:refname" | tail -n1 | sed 's/.*\///')
echo "Checking pkg_version v$pkg_version and latest_tag $latest_tag"
if [ "$latest_tag" == "v$pkg_version" ]
then
exit 1
fi
echo "Versions are different"