-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (30 loc) · 933 Bytes
/
Copy pathrelease.yml
File metadata and controls
38 lines (30 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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