Skip to content

Commit

Permalink
Merge pull request #13 from duckdb/jray/no-git-checks-on-publish
Browse files Browse the repository at this point in the history
no-git-checks on publish
  • Loading branch information
jraymakers authored Oct 5, 2024
2 parents deb0b43 + 63bc8c9 commit 9356ead
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/DuckDBNodeBindingsAndAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,21 +90,21 @@ jobs:
- name: Publish - Bindings - Linux x64
if: ${{ inputs.publish_linux_x64 }}
working-directory: bindings/pkgs/@duckdb/node-bindings-linux-x64
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks --publish-branch ${{ github.ref_name }} --access public
env:
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish - Bindings
if: ${{ inputs.publish_bindings }}
working-directory: bindings/pkgs/@duckdb/node-bindings
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks --publish-branch ${{ github.ref_name }} --access public
env:
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish - API
if: ${{ inputs.publish_api }}
working-directory: api/pkgs/@duckdb/node-api
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks --publish-branch ${{ github.ref_name }} --access public
env:
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
- name: Publish - Bindings - Darwin ARM64
if: ${{ inputs.publish_darwin_arm64 }}
working-directory: bindings/pkgs/@duckdb/node-bindings-darwin-arm64
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks --publish-branch ${{ github.ref_name }} --access public
env:
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -178,6 +178,6 @@ jobs:
- name: Publish - Bindings - Win32 x64
if: ${{ inputs.publish_win32_x64 }}
working-directory: bindings/pkgs/@duckdb/node-bindings-win32-x64
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --publish-branch ${{ github.ref_name }} --access public
run: pnpm publish ${{ inputs.publish_dry_run && '--dry-run' || '' }} --no-git-checks --publish-branch ${{ github.ref_name }} --access public
env:
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 9356ead

Please sign in to comment.