geminimock 0.1.8 → 0.1.9
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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -295,16 +295,16 @@ Troubleshooting steps:
|
|
|
295
295
|
|
|
296
296
|
## GitHub Release Automation
|
|
297
297
|
|
|
298
|
-
- On push to `main`, `
|
|
298
|
+
- On push to `main`, `release-publish.yml` runs a single pipeline for version bump, npm publish, and GitHub release.
|
|
299
299
|
- Bump rule from pushed commit messages:
|
|
300
300
|
- `#major` or `BREAKING CHANGE` or `!:` -> major
|
|
301
301
|
- `#minor` -> minor
|
|
302
302
|
- default (or `#patch`) -> patch
|
|
303
303
|
- If multiple markers exist in the pushed commit range, priority is `major > minor > patch`.
|
|
304
|
-
-
|
|
305
|
-
- `release.yml` creates
|
|
304
|
+
- The workflow commits `package.json` and `package-lock.json` with `[skip ci]` to avoid duplicate runs from the bump commit.
|
|
305
|
+
- `release-publish.yml` creates release tag `v<version>` if it does not exist.
|
|
306
306
|
- Release notes are generated automatically from the merged changes.
|
|
307
|
-
-
|
|
307
|
+
- `release-publish.yml` publishes to npm using Trusted Publishing (OIDC) if that version is not already published.
|
|
308
308
|
- Normal workflow: commit and push to `main`; version bump, release, and npm publish run automatically.
|
|
309
309
|
|
|
310
310
|
Trusted Publisher setup values for npm:
|
|
@@ -312,5 +312,5 @@ Trusted Publisher setup values for npm:
|
|
|
312
312
|
- Publisher: `GitHub Actions`
|
|
313
313
|
- Organization or user: `yldst-dev`
|
|
314
314
|
- Repository: `GeminiMock`
|
|
315
|
-
- Workflow filename: `
|
|
315
|
+
- Workflow filename: `release-publish.yml`
|
|
316
316
|
- Environment name: leave empty
|