@@ -96,21 +96,21 @@ jobs:
96
96
working-directory : bindings/pkgs/@duckdb/node-bindings-linux-x64
97
97
run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
98
98
env :
99
- NPM_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
99
+ NPM_AUTH_TOKEN : ${{ secrets.DUCKDB_NPM_TOKEN }}
100
100
101
101
- name : Publish - Bindings
102
102
if : ${{ inputs.publish_bindings }}
103
103
working-directory : bindings/pkgs/@duckdb/node-bindings
104
104
run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
105
105
env :
106
- NPM_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
106
+ NPM_AUTH_TOKEN : ${{ secrets.DUCKDB_NPM_TOKEN }}
107
107
108
108
- name : Publish - API
109
109
if : ${{ inputs.publish_api }}
110
110
working-directory : api/pkgs/@duckdb/node-api
111
111
run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
112
112
env :
113
- NPM_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
113
+ NPM_AUTH_TOKEN : ${{ secrets.DUCKDB_NPM_TOKEN }}
114
114
115
115
macos :
116
116
name : Mac OS X
@@ -151,7 +151,7 @@ jobs:
151
151
working-directory : bindings/pkgs/@duckdb/node-bindings-darwin-arm64
152
152
run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
153
153
env :
154
- NPM_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
154
+ NPM_AUTH_TOKEN : ${{ secrets.DUCKDB_NPM_TOKEN }}
155
155
156
156
windows :
157
157
name : Windows
@@ -192,4 +192,4 @@ jobs:
192
192
working-directory : bindings/pkgs/@duckdb/node-bindings-win32-x64
193
193
run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
194
194
env :
195
- NPM_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
195
+ NPM_AUTH_TOKEN : ${{ secrets.DUCKDB_NPM_TOKEN }}
0 commit comments