Skip to content

Commit 4111158

Browse files
authored
chore: add NODE_AUTH_TOKEN in changeset action (#18)
* chore: add node auth token in changeset action * downgrade * chore: delete changelog 0.0.12 * chore: add changeset
1 parent 573697c commit 4111158

File tree

6 files changed

+13
-45
lines changed

6 files changed

+13
-45
lines changed

.changeset/grumpy-cobras-act.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@offlegacy/git-intent-core": patch
3+
"git-intent": patch
4+
---
5+
6+
chore: add NODE_AUTH_TOKEN in changeset action
7+

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
58+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5859

5960
# Dispatch to other workflows if published
6061
- name: Trigger Binary Build

packages/cli/CHANGELOG.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,5 @@
11
# git-intent
22

3-
## 0.0.13
4-
### Patch Changes
5-
6-
7-
8-
- [#15](https://github.com/offlegacy/git-intent/pull/15) [`fe0f25b`](https://github.com/offlegacy/git-intent/commit/fe0f25bd0632f1fc6a2e37932b6eac93c417565b) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: bump version to v0.0.13 for changeset version testing
9-
10-
- Updated dependencies [[`fe0f25b`](https://github.com/offlegacy/git-intent/commit/fe0f25bd0632f1fc6a2e37932b6eac93c417565b)]:
11-
- @offlegacy/git-intent-core@0.0.13
12-
13-
## 0.0.12
14-
### Patch Changes
15-
16-
17-
18-
- [#13](https://github.com/offlegacy/git-intent/pull/13) [`f53d476`](https://github.com/offlegacy/git-intent/commit/f53d47670edc7f59e0a1d8bac2ab830d80a6ff14) Thanks [@kangju2000](https://github.com/kangju2000)! - fix: update binary-build workflow to add binaries to existing Changeset releases
19-
20-
- Updated dependencies [[`f53d476`](https://github.com/offlegacy/git-intent/commit/f53d47670edc7f59e0a1d8bac2ab830d80a6ff14)]:
21-
- @offlegacy/git-intent-core@0.0.12
22-
233
## 0.0.11
244
### Patch Changes
255

packages/cli/package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "git-intent",
3-
"version": "0.0.13",
3+
"version": "0.0.11",
44
"description": "Git workflow tool for intentional commits — define your commit intentions first for clearer, more atomic changes.",
55
"keywords": [
66
"git",
@@ -13,9 +13,7 @@
1313
"todo-driven"
1414
],
1515
"license": "MIT",
16-
"files": [
17-
"dist"
18-
],
16+
"files": ["dist"],
1917
"type": "module",
2018
"bin": {
2119
"git-intent": "./dist/index.cjs"
@@ -35,9 +33,7 @@
3533
"test:ui": "vitest --ui"
3634
},
3735
"pkg": {
38-
"assets": [
39-
"dist/**/*"
40-
],
36+
"assets": ["dist/**/*"],
4137
"outputPath": "build"
4238
},
4339
"dependencies": {

packages/core/CHANGELOG.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
# @offlegacy/git-intent-core
22

3-
## 0.0.13
4-
### Patch Changes
5-
6-
7-
8-
- [#15](https://github.com/offlegacy/git-intent/pull/15) [`fe0f25b`](https://github.com/offlegacy/git-intent/commit/fe0f25bd0632f1fc6a2e37932b6eac93c417565b) Thanks [@kangju2000](https://github.com/kangju2000)! - chore: bump version to v0.0.13 for changeset version testing
9-
10-
## 0.0.12
11-
### Patch Changes
12-
13-
14-
15-
- [#13](https://github.com/offlegacy/git-intent/pull/13) [`f53d476`](https://github.com/offlegacy/git-intent/commit/f53d47670edc7f59e0a1d8bac2ab830d80a6ff14) Thanks [@kangju2000](https://github.com/kangju2000)! - fix: update binary-build workflow to add binaries to existing Changeset releases
16-
173
## 0.0.11
184
### Patch Changes
195

packages/core/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
{
22
"name": "@offlegacy/git-intent-core",
3-
"version": "0.0.13",
3+
"version": "0.0.11",
44
"private": true,
55
"description": "Core functionality for git-intent",
66
"type": "module",
77
"main": "dist/index.cjs",
88
"module": "dist/index.js",
99
"types": "dist/index.d.ts",
10-
"files": [
11-
"dist"
12-
],
10+
"files": ["dist"],
1311
"scripts": {
1412
"dev": "tsup --watch",
1513
"build": "tsup",

0 commit comments

Comments
 (0)