Skip to content

sync __version__ to 1.0.4 #18

sync __version__ to 1.0.4

sync __version__ to 1.0.4 #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install ruff
- run: ruff check .
- run: pip install -e ".[dev]"
- run: pytest -x --tb=short
auto-tag:
runs-on: ubuntu-latest
needs: ci
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_PAT }}
- name: Read version and tag if new
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_PAT }}
run: |
VERSION=$(python -c "import re; content=open('aivory_monitor/__init__.py').read(); print(re.search(r\"__version__\s*=\s*'([^']+)'\", content).group(1))")
TAG="v${VERSION}"
if git rev-parse "$TAG" >/dev/null 2>&1; then
echo "Tag $TAG already exists, skipping."
else
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag "$TAG"
git push origin "$TAG"
echo "Created and pushed tag $TAG"
fi