Add SAFE-4 verified-navigation gate and CAPTCHA batch solve-session flow #2
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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| name: Build and publish quietline.skill | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - run: uv sync | |
| # Release gate: don't publish if the eval suite (including the | |
| # release-blocking SAFE-1 own-data-only gate) is failing. | |
| - name: Run eval suite as a release gate | |
| run: uv run python evals/run_evals.py --verbose | |
| - name: Package skill bundle | |
| run: uv run python scripts/package_skill.py --output quietline.skill | |
| - name: Publish GitHub Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release create "${{ github.ref_name }}" quietline.skill \ | |
| --title "${{ github.ref_name }}" \ | |
| --generate-notes |