@@ -90,21 +90,21 @@ jobs:
90
90
- name : Publish - Bindings - Linux x64
91
91
if : ${{ inputs.publish_linux_x64 }}
92
92
working-directory : bindings/pkgs/@duckdb/node-bindings-linux-x64
93
- run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
93
+ run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks -- publish-branch ${{ github.ref_name }} --access public
94
94
env :
95
95
NPM_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
96
96
97
97
- name : Publish - Bindings
98
98
if : ${{ inputs.publish_bindings }}
99
99
working-directory : bindings/pkgs/@duckdb/node-bindings
100
- run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
100
+ run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks -- publish-branch ${{ github.ref_name }} --access public
101
101
env :
102
102
NPM_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
103
103
104
104
- name : Publish - API
105
105
if : ${{ inputs.publish_api }}
106
106
working-directory : api/pkgs/@duckdb/node-api
107
- run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
107
+ run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks -- publish-branch ${{ github.ref_name }} --access public
108
108
env :
109
109
NPM_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
110
110
@@ -141,7 +141,7 @@ jobs:
141
141
- name : Publish - Bindings - Darwin ARM64
142
142
if : ${{ inputs.publish_darwin_arm64 }}
143
143
working-directory : bindings/pkgs/@duckdb/node-bindings-darwin-arm64
144
- run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
144
+ run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks -- publish-branch ${{ github.ref_name }} --access public
145
145
env :
146
146
NPM_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
147
147
@@ -178,6 +178,6 @@ jobs:
178
178
- name : Publish - Bindings - Win32 x64
179
179
if : ${{ inputs.publish_win32_x64 }}
180
180
working-directory : bindings/pkgs/@duckdb/node-bindings-win32-x64
181
- run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
181
+ run : pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks -- publish-branch ${{ github.ref_name }} --access public
182
182
env :
183
183
NPM_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments