You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+20-16Lines changed: 20 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -150,18 +150,20 @@ jobs:
150
150
echo "release commit for $GITHUB_REF_NAME: $RELEASE_COMMIT"
151
151
go run ./cmd/spacedock-release e2e-gate "$RELEASE_COMMIT"
152
152
153
-
# Assert the tagged commit's plugin manifests already carry the tag's semver
154
-
# — the stamp-then-tag ordering docs/releasing.md documents. The checkout
155
-
# above is at the tagged commit, so these are the tagged commit's manifests.
156
-
# A mismatch (the v0.20.0 pre-stamp inversion: tag 0.20.0, manifest 0.19.9)
157
-
# exits non-zero and blocks the cut, since goreleaser needs: this job. The
158
-
# `if` skips pre-releases (a vX.Y.Z-pre.N tag legitimately differs from its
159
-
# X.Y.Z manifest), matching the stamp step's pre-release carve-out below.
160
-
- name: Gate the cut on the tagged manifest matching the tag semver
153
+
# Assert the tagged commit's plugin manifests AND the FO shared-core prose
154
+
# already carry the tag's semver/minor — the stamp-then-tag ordering
155
+
# docs/releasing.md documents. The checkout above is at the tagged commit,
156
+
# so these are the tagged commit's files. A mismatch (the v0.20.0 pre-stamp
157
+
# inversion: tag 0.20.0, manifest 0.19.9; or a forgotten prose stamp) exits
158
+
# non-zero and blocks the cut, since goreleaser needs: this job. The `if`
159
+
# skips pre-releases (a vX.Y.Z-pre.N tag legitimately differs from its
160
+
# X.Y.Z manifest/prose), matching the stamp step's pre-release carve-out
161
+
# below.
162
+
- name: Gate the cut on the tagged manifest/prose matching the tag semver
161
163
if: "!contains(github.ref, '-')"
162
164
run: |
163
165
set -euo pipefail
164
-
go run ./cmd/spacedock-release manifest-tag-gate "$GITHUB_REF_NAME" .claude-plugin/plugin.json .codex-plugin/plugin.json
166
+
go run ./cmd/spacedock-release manifest-tag-gate "$GITHUB_REF_NAME" .claude-plugin/plugin.json .codex-plugin/plugin.json skills/first-officer/references/first-officer-shared-core.md
0 commit comments