Skip to content

Commit

Permalink
Merge pull request #4 from Mause/exclusion-rules
Browse files Browse the repository at this point in the history
build: fix repo name in workflows
  • Loading branch information
Mytherin authored Oct 5, 2023
2 parents 1c8c0a5 + 213ed2e commit 9bb8060
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/NodeJS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
uses: hendrikmuhs/ccache-action@main
with:
key: ${{ github.job }}
save: ${{ ( github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' ) && ( matrix.node == '19' ) }}
save: ${{ ( github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb-node' ) && ( matrix.node == '19' ) }}

- name: Setup
shell: bash
Expand All @@ -123,7 +123,7 @@ jobs:
run: ./scripts/node_build.sh ${{ matrix.node }}

osx-nodejs:
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb'
if: startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb-node'
name: node.js OSX
runs-on: macos-latest
needs: linux-nodejs
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
uses: hendrikmuhs/ccache-action@main
with:
key: ${{ github.job }}-${{ matrix.target_arch }}
save: ${{ ( github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' ) && ( matrix.node == '19' ) }}
save: ${{ ( github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb-node' ) && ( matrix.node == '19' ) }}

- name: Setup
shell: bash
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
uses: hendrikmuhs/ccache-action@main
with:
key: ${{ github.job }}-${{ matrix.node }}
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' }}
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb-node' }}
variant: sccache

- name: Node
Expand Down

0 comments on commit 9bb8060

Please sign in to comment.