ci: validate version and only publish when tagged

This commit is contained in:
Daniel Bauer
2025-07-09 09:46:49 +02:00
parent 20b2f1b219
commit e541a27d9f

View File

@@ -3,6 +3,7 @@ name: CI
on: on:
push: push:
branches: [ main ] branches: [ main ]
tags: [ 'v*' ]
pull_request: pull_request:
branches: [ main ] branches: [ main ]
@@ -36,13 +37,33 @@ jobs:
- name: Run tests - name: Run tests
run: uv run pytest run: uv run pytest
- name: Validate version consistency
# Ensure that the version is consistent across files and matches the tag if applicable
run: |
PYPROJECT_VERSION=$(python3 -c "import tomllib; print(tomllib.load(open('pyproject.toml', 'rb'))['project']['version'])")
INIT_VERSION=$(python3 -c "import re; print(re.search(r'__version__ = \"(.+?)\"', open('src/cordra_mcp/__init__.py').read()).group(1))")
if [ "$PYPROJECT_VERSION" != "$INIT_VERSION" ]; then
echo "Version mismatch: pyproject.toml=$PYPROJECT_VERSION, __init__.py=$INIT_VERSION"
exit 1
fi
# Additionally check tag version if this is a tag build
if [[ "$GITHUB_REF" == refs/tags/v* ]]; then
TAG_VERSION=${GITHUB_REF#refs/tags/v}
if [ "$TAG_VERSION" != "$PYPROJECT_VERSION" ]; then
echo "Version mismatch: tag=$TAG_VERSION, pyproject.toml=$PYPROJECT_VERSION"
exit 1
fi
fi
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: test needs: test
permissions: permissions:
contents: read contents: read
packages: write packages: write
if: github.ref == 'refs/heads/main' && github.event_name == 'push' if: startsWith(github.ref, 'refs/tags/v')
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -63,7 +84,7 @@ jobs:
with: with:
images: ghcr.io/${{ github.repository_owner }}/cordra-mcp images: ghcr.io/${{ github.repository_owner }}/cordra-mcp
tags: | tags: |
type=ref,event=branch type=ref,event=tag
type=raw,value=latest type=raw,value=latest
- name: Build and push Docker image - name: Build and push Docker image
@@ -81,7 +102,7 @@ jobs:
needs: test needs: test
permissions: permissions:
id-token: write id-token: write
if: github.ref == 'refs/heads/main' && github.event_name == 'push' if: startsWith(github.ref, 'refs/tags/v')
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4