Skip to content

Commit 494b022

Browse files
authored
Release/v4.0.0 (#562)
* Update tagged release pipeline to fix auth * Update libnut to 2.7.1 because the 2.7.0 Windows build is broken * Another round of updates to release pipeline config * Another round of updates to release pipeline config
1 parent e2ae55d commit 494b022

File tree

8 files changed

+27
-18
lines changed

8 files changed

+27
-18
lines changed

.github/workflows/tagged_release.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
os: [ ubuntu-latest, windows-latest, macos-latest ]
1212
node: [ 18 ]
1313
runs-on: ${{matrix.os}}
14+
env:
15+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1416
steps:
1517
- name: Set up Git repository
1618
uses: actions/checkout@v3
@@ -37,6 +39,8 @@ jobs:
3739
needs:
3840
- test
3941
runs-on: ubuntu-latest
42+
env:
43+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4044
steps:
4145
- name: Set up Git repository
4246
uses: actions/checkout@v3
@@ -61,13 +65,13 @@ jobs:
6165
external_repository: nut-tree/apidoc
6266
publish_dir: ./core/nut.js/docs
6367
- name: Publish tagged release to npm
64-
run: npm publish
68+
run: pnpm run publish:release
6569
env:
6670
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6771
- uses: actions/setup-node@v3
6872
with:
6973
registry-url: "https://npm.pkg.github.com"
7074
- name: Publish tagged release to GPR
71-
run: npm publish
75+
run: pnpm run publish:release
7276
env:
7377
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

core/nut.js/package.json

+1
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 --no-git-checks",
5556
"prepublishOnly": "pnpm run compile",
5657
"typedoc": "typedoc --options ./typedoc.js --entryPointStrategy expand ./lib"
5758
},

core/provider-interfaces/package.json

+1
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 --no-git-checks",
1112
"prepublishOnly": "pnpm run compile"
1213
},
1314
"keywords": [

core/shared/package.json

+1
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 --no-git-checks",
1415
"prepublishOnly": "pnpm run compile"
1516
},
1617
"dependencies": {

package.json

+1-1
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": [

pnpm-lock.yaml

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

providers/clipboardy/package.json

+1
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 --no-git-checks",
1415
"prepublishOnly": "pnpm run compile"
1516
},
1617
"keywords": [

providers/libnut/package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,17 @@
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 --no-git-checks",
3738
"prepublishOnly": "pnpm run compile",
3839
"version": "npm version --no-git-tag -f"
3940
},
4041
"engines": {
4142
"node": ">=10.15.3"
4243
},
4344
"dependencies": {
44-
"@nut-tree/libnut-darwin": "2.7.0",
45-
"@nut-tree/libnut-linux": "2.7.0",
46-
"@nut-tree/libnut-win32": "2.7.0"
45+
"@nut-tree/libnut-darwin": "2.7.1",
46+
"@nut-tree/libnut-linux": "2.7.1",
47+
"@nut-tree/libnut-win32": "2.7.1"
4748
},
4849
"devDependencies": {
4950
"@nut-tree/configs": "workspace:*",

0 commit comments

Comments
 (0)