Skip to content

Commit 9bb8060

Browse files
authored
Merge pull request #4 from Mause/exclusion-rules
build: fix repo name in workflows
2 parents 1c8c0a5 + 213ed2e commit 9bb8060

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/NodeJS.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
uses: hendrikmuhs/ccache-action@main
105105
with:
106106
key: ${{ github.job }}
107-
save: ${{ ( github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' ) && ( matrix.node == '19' ) }}
107+
save: ${{ ( github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb-node' ) && ( matrix.node == '19' ) }}
108108

109109
- name: Setup
110110
shell: bash
@@ -123,7 +123,7 @@ jobs:
123123
run: ./scripts/node_build.sh ${{ matrix.node }}
124124

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

167167
- name: Setup
168168
shell: bash
@@ -236,7 +236,7 @@ jobs:
236236
uses: hendrikmuhs/ccache-action@main
237237
with:
238238
key: ${{ github.job }}-${{ matrix.node }}
239-
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb' }}
239+
save: ${{ github.ref == 'refs/heads/main' || github.repository != 'duckdb/duckdb-node' }}
240240
variant: sccache
241241

242242
- name: Node

0 commit comments

Comments
 (0)