adb-ready 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -1
- package/README.md +1 -1
- package/dist/cli.js +19 -5
- package/dist/cli.js.map +4 -4
- package/docs/RELEASING.md +5 -3
- package/package.json +1 -1
- package/schema/agent-tools-v1.json +1 -1
package/docs/RELEASING.md
CHANGED
|
@@ -79,12 +79,14 @@ Do not create or move the final tag until this rehearsal is green.
|
|
|
79
79
|
|
|
80
80
|
1. Create a draft GitHub release for the exact `vVERSION` tag on the audited
|
|
81
81
|
release commit.
|
|
82
|
-
2. Dispatch the workflow
|
|
83
|
-
|
|
82
|
+
2. Dispatch the audited workflow from protected `main` while selecting the
|
|
83
|
+
immutable tag as the release target. Publish mode rejects every other branch,
|
|
84
|
+
requires the checkout to resolve to that exact tag commit, and also permits a
|
|
85
|
+
self-contained dispatch from the matching tag:
|
|
84
86
|
|
|
85
87
|
```bash
|
|
86
88
|
gh workflow run release.yml \
|
|
87
|
-
--ref
|
|
89
|
+
--ref main \
|
|
88
90
|
-f mode=publish \
|
|
89
91
|
-f release_tag=vVERSION \
|
|
90
92
|
-f ref=vVERSION
|
package/package.json
CHANGED