@outcomeeng/spx 0.6.2 → 0.6.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/README.md +16 -6
- package/dist/cli.js +2351 -1197
- package/dist/cli.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -176,12 +176,22 @@ The project uses GitHub Actions for continuous integration and publishing:
|
|
|
176
176
|
|
|
177
177
|
### Publishing a Release
|
|
178
178
|
|
|
179
|
-
1.
|
|
180
|
-
2. Bump the version
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
179
|
+
1. Sync `main` with `origin/main`: `git pull --ff-only origin main`
|
|
180
|
+
2. Bump the version with `pnpm version patch --no-git-tag-version`, unless the
|
|
181
|
+
release request specifies `minor`, `major`, or an exact version
|
|
182
|
+
3. Run `pnpm run publish:check`
|
|
183
|
+
4. Commit and tag:
|
|
184
|
+
`git add package.json`
|
|
185
|
+
`git commit -m "build(release): bump version to X.Y.Z"`
|
|
186
|
+
`git tag vX.Y.Z`
|
|
187
|
+
5. Push: `git push origin main && git push origin vX.Y.Z`
|
|
188
|
+
6. Approve the deployment in the GitHub Actions `npm-publish` environment
|
|
189
|
+
7. Confirm the published version and provenance:
|
|
190
|
+
|
|
191
|
+
```bash
|
|
192
|
+
npm view @outcomeeng/spx version
|
|
193
|
+
npm audit signatures
|
|
194
|
+
```
|
|
185
195
|
|
|
186
196
|
## Technical Stack
|
|
187
197
|
|