mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 23:51:16 -07:00
feat: add early version consistency check to release workflow
This commit is contained in:
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
@@ -44,6 +44,9 @@ jobs:
|
||||
- name: Install Dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Check Version Consistency
|
||||
run: npm run check:versions
|
||||
|
||||
- name: Set Release Version and Tag
|
||||
id: version
|
||||
run: |
|
||||
|
||||
@@ -51,7 +51,8 @@
|
||||
"publish:release": "npm run prepare:package && npm run build:packages && npm run build:sandbox:fast && npm run publish:sandbox && npm run publish:npm",
|
||||
"prepublishOnly": "node scripts/check-versions.js && node scripts/prepublish.js",
|
||||
"release:version": "node scripts/version.js",
|
||||
"push-release": "git push && git push --tags"
|
||||
"push-release": "git push && git push --tags",
|
||||
"check:versions": "node scripts/check-versions.js"
|
||||
},
|
||||
"bin": {
|
||||
"gemini": "bundle/gemini.js"
|
||||
|
||||
Reference in New Issue
Block a user