This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Disable hostfs mounting by default; Add docs; Bump version #8
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 to PyPi | |
| permissions: | |
| actions: write | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| pypi-release: | |
| name: PyPi Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install dependencies and build | |
| run: | | |
| uv sync --frozen --no-dev --no-install-project | |
| uv build | |
| - name: Publish to PyPi | |
| id: pypi_publish | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_TOKEN }} | |
| verbose: true |