@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 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. Run `pnpm run publish:check`
180
- 2. Bump the version in `package.json`
181
- 3. Commit and tag: `git tag vX.Y.Z`
182
- 4. Push: `git push origin main && git push origin vX.Y.Z`
183
- 5. Approve the deployment in the GitHub Actions `npm-publish` environment
184
- 6. Verify provenance with `npm audit signatures`
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