chore(release): v0.1.14 #18
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
| # Publish agentic-devkit to PyPI. Runs when you push a version tag (e.g. v0.1.2) | |
| # or manually via workflow_dispatch. | |
| # Uses Trusted Publishing (OIDC): no token in repo. Configure the trusted publisher | |
| # on PyPI with Workflow name: publish-pypi.yml, Environment name: pypi (optional). | |
| # See: https://docs.pypi.org/trusted-publishers/ | |
| name: Publish to PyPI | |
| on: | |
| push: | |
| tags: | |
| - "v[0-9]+.[0-9]+.[0-9]+" | |
| workflow_dispatch: | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| jobs: | |
| publish: | |
| name: Publish to PyPI | |
| runs-on: ubuntu-latest | |
| environment: pypi | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| - name: Build | |
| run: uv build | |
| - name: Publish to PyPI | |
| run: uv publish |