@scrymore/scry-deployer 0.5.2 → 0.5.3-next.20260910194412
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/README.md +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -986,6 +986,29 @@ npm install @scrymore/scry-deployer
|
|
|
986
986
|
npm install @scrymore/scry-deployer@nightly
|
|
987
987
|
```
|
|
988
988
|
|
|
989
|
+
### Snapshot channels
|
|
990
|
+
|
|
991
|
+
Pushes to `stage` publish `@scrymore/scry-deployer@next`. The daily schedule
|
|
992
|
+
publishes `@nightly` from `main`; manual runs select the channel from the chosen
|
|
993
|
+
branch (`stage` → `next`, `main` → `nightly`). Other branches cannot publish.
|
|
994
|
+
Stable releases from `main` still use the existing Changesets release PR and
|
|
995
|
+
`latest` channel.
|
|
996
|
+
|
|
997
|
+
```bash
|
|
998
|
+
npm install --save-dev @scrymore/scry-deployer@next
|
|
999
|
+
```
|
|
1000
|
+
|
|
1001
|
+
The channel moves with each snapshot; pin the resolved prerelease version for a
|
|
1002
|
+
reproducible build. Snapshots use a temporary patch changeset even when no release
|
|
1003
|
+
changesets remain, and never commit generated versions or create Git tags. Runs
|
|
1004
|
+
are serialized per branch and verify the prerelease suffix before publishing.
|
|
1005
|
+
|
|
1006
|
+
After merging this CI change, create `stage` from `main`. Both channels use the
|
|
1007
|
+
existing repository `NPM_TOKEN` secret via setup-node's `NODE_AUTH_TOKEN`; it must
|
|
1008
|
+
have npm publish permission for this package. No additional secret is required.
|
|
1009
|
+
If GitHub has disabled the scheduled workflow for inactivity, re-enable
|
|
1010
|
+
**Snapshot Release** in Actions. No npm dist-tag needs to be created manually.
|
|
1011
|
+
|
|
989
1012
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed contribution guidelines.
|
|
990
1013
|
|
|
991
1014
|
---
|