agent-rules-kit v0.2.1 #1
Workflow file for this run
This file contains hidden or 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: Publish PyPI | |
| on: | |
| release: | |
| types: | |
| - published | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: publish-pypi-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| name: build / distributions | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install build tools and project development dependencies | |
| run: | | |
| python -m pip install -U build twine | |
| python -m pip install -e '.[dev]' | |
| - name: Verify release ref matches package version | |
| run: | | |
| python - <<'PY' | |
| import os | |
| import tomllib | |
| from pathlib import Path | |
| version = tomllib.loads(Path("pyproject.toml").read_text(encoding="utf-8"))["project"]["version"] | |
| ref_name = os.environ.get("GITHUB_REF_NAME", "") | |
| event_name = os.environ.get("GITHUB_EVENT_NAME", "") | |
| print(f"project_version={version}") | |
| print(f"github_event={event_name}") | |
| print(f"github_ref_name={ref_name}") | |
| if event_name == "release" and ref_name != f"v{version}": | |
| raise SystemExit(f"release ref {ref_name!r} does not match package version v{version}") | |
| PY | |
| - name: Run local checks | |
| run: ./scripts/check.sh | |
| - name: Build distributions | |
| run: python -m build | |
| - name: Check distributions | |
| run: python -m twine check dist/* | |
| - name: Smoke test wheel | |
| run: | | |
| python -m venv /tmp/agent-rules-kit-wheel-smoke | |
| /tmp/agent-rules-kit-wheel-smoke/bin/python -m pip install dist/*.whl | |
| /tmp/agent-rules-kit-wheel-smoke/bin/python -m pip check | |
| /tmp/agent-rules-kit-wheel-smoke/bin/agent-rules-kit --version | |
| /tmp/agent-rules-kit-wheel-smoke/bin/agent-rules-kit check tests/fixtures/repositories/single-agent --format json | /tmp/agent-rules-kit-wheel-smoke/bin/python -m json.tool | |
| - name: Upload distributions | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: python-distributions | |
| path: dist/ | |
| if-no-files-found: error | |
| retention-days: 7 | |
| publish: | |
| name: publish / PyPI | |
| needs: build | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| environment: pypi | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Download distributions | |
| uses: actions/download-artifact@v5 | |
| with: | |
| name: python-distributions | |
| path: dist | |
| - name: Publish package distributions to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |