Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@ jobs:
--wait-seconds 2700 \
--poll-seconds 10

# The validator needs only PyYAML + stdlib (no package install, no
# browser), matching the gate in validate-claims.yml. Installing the
# whole package here would let a heavy dependency break the release.
- name: Install PyYAML
run: pip install "pyyaml>=6"

- name: Verify the claims registry
run: python scripts/validate_claims.py --check --structure-only

Expand Down Expand Up @@ -282,6 +288,12 @@ jobs:
--repository "${GITHUB_REPOSITORY}" \
--sha "${GITHUB_SHA}"

# The validator needs only PyYAML + stdlib (no package install, no
# browser), matching the gate in validate-claims.yml. Installing the
# whole package here would let a heavy dependency break the release.
- name: Install PyYAML
run: pip install "pyyaml>=6"

- name: Verify the claims registry
run: python scripts/validate_claims.py --check --structure-only

Expand Down
2 changes: 1 addition & 1 deletion public-artifacts.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
},
{
"path": ".github/workflows/release.yml",
"sha256": "2e9f30a2a2d902950423513eb49ce76c63eed958a7f6b22e318826e7282f74aa"
"sha256": "d8f1207dc1976a9d9e07622c2cc528687a07e0a3dddc23e512c40ceefc03154d"
},
{
"path": ".github/workflows/validate-claims.yml",
Expand Down