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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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`, `auto-version-bump.yml` automatically bumps version in `package.json` and `package-lock.json`.
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
- - After bumping, `auto-version-bump.yml` triggers `release.yml` and `npm-publish.yml` via workflow dispatch.
305
- - `release.yml` creates a release tag `v<version>` if it does not exist.
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
- - On each push to `main`, `npm-publish.yml` publishes to npm using Trusted Publishing (OIDC) if that version is not already published.
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: `npm-publish.yml`
315
+ - Workflow filename: `release-publish.yml`
316
316
  - Environment name: leave empty
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geminimock",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "geminimock": "dist/cli.js"