Skip to content

Commit 5bc0d07

Browse files
committed
Another round of updates to release pipeline config
1 parent 1805b1b commit 5bc0d07

File tree

7 files changed

+8
-3
lines changed

7 files changed

+8
-3
lines changed

.github/workflows/tagged_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ jobs:
6565
external_repository: nut-tree/apidoc
6666
publish_dir: ./core/nut.js/docs
6767
- name: Publish tagged release to npm
68-
run: npm publish
68+
run: pnpm run publish:release
6969
env:
7070
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
7171
- uses: actions/setup-node@v3
7272
with:
7373
registry-url: "https://npm.pkg.github.com"
7474
- name: Publish tagged release to GPR
75-
run: npm publish
75+
run: pnpm run publish:release
7676
env:
7777
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

core/nut.js/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"coverage": "jest --coverage --runInBand --logHeapUsage",
5353
"coverage:clean": "rimraf coverage",
5454
"publish:next": "pnpm publish --tag next --no-git-checks",
55+
"publish:release": "pnpm publish",
5556
"prepublishOnly": "pnpm run compile",
5657
"typedoc": "typedoc --options ./typedoc.js --entryPointStrategy expand ./lib"
5758
},

core/provider-interfaces/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"clean": "rimraf dist",
99
"compile": "pnpm run clean && tsc -p .",
1010
"publish:next": "pnpm publish --tag next --no-git-checks",
11+
"publish:release": "pnpm publish",
1112
"prepublishOnly": "pnpm run compile"
1213
},
1314
"keywords": [

core/shared/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"clean": "rimraf dist",
1212
"compile": "pnpm run clean && tsc -p .",
1313
"publish:next": "pnpm publish --tag next --no-git-checks",
14+
"publish:release": "pnpm publish",
1415
"prepublishOnly": "pnpm run compile"
1516
},
1617
"dependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"coverage:clean": "pnpm -r run coverage:clean",
1010
"prepare": "husky install",
1111
"publish:next": "pnpm -r run publish:next",
12-
"publish": "pnpm -r run publish"
12+
"publish:release": "pnpm -r run publish:release"
1313
},
1414
"packageManager": "[email protected]",
1515
"workspaces": [

providers/clipboardy/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"clean": "rimraf dist",
1212
"compile": "pnpm run clean && tsc -p .",
1313
"publish:next": "pnpm publish --tag next --no-git-checks",
14+
"publish:release": "pnpm publish",
1415
"prepublishOnly": "pnpm run compile"
1516
},
1617
"keywords": [

providers/libnut/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"coverage": "jest --coverage --runInBand",
3535
"coverage:clean": "rimraf coverage",
3636
"publish:next": "pnpm publish --tag next --no-git-checks",
37+
"publish:release": "pnpm publish",
3738
"prepublishOnly": "pnpm run compile",
3839
"version": "npm version --no-git-tag -f"
3940
},

0 commit comments

Comments
 (0)