Skip to content

Commit 7b94408

Browse files
committed
chore: use env variable
1 parent 91af7c0 commit 7b94408

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/push.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: Download backend-native artifact
7676
uses: actions/download-artifact@v4
7777
with:
78-
name: "native-linux-x64-glibc-${{ matrix.python-version }}.node" # this name is referenced in above in native_linux
78+
name: "native-linux-x64-glibc-${{ matrix.python-version }}.node"
7979
path: ./packages/cubejs-backend-native/
8080
- name: Install Node.js ${{ matrix.node-version }}
8181
uses: actions/setup-node@v4
@@ -382,7 +382,7 @@ jobs:
382382
- name: Download backend-native artifact
383383
uses: actions/download-artifact@v4
384384
with:
385-
name: "native-linux-x64-glibc-${{ env.PYTHON_VERSION_CURRENT }}.node" # this name is referenced in above in native_linux
385+
name: "native-linux-x64-glibc-${{ env.PYTHON_VERSION_CURRENT }}.node"
386386
path: ./packages/cubejs-backend-native/
387387
- name: Install Node.js ${{ matrix.node-version }}
388388
uses: actions/setup-node@v4
@@ -454,7 +454,7 @@ jobs:
454454
- name: Download backend-native artifact
455455
uses: actions/download-artifact@v4
456456
with:
457-
name: "native-linux-x64-glibc-${{ env.PYTHON_VERSION_CURRENT }}.node" # this name is referenced in above in native_linux
457+
name: "native-linux-x64-glibc-${{ env.PYTHON_VERSION_CURRENT }}.node"
458458
path: ./packages/cubejs-backend-native/
459459
- name: Install Rust
460460
uses: actions-rust-lang/setup-rust-toolchain@v1
@@ -550,7 +550,7 @@ jobs:
550550
- name: Download backend-native artifact
551551
uses: actions/download-artifact@v4
552552
with:
553-
name: "native-linux-x64-glibc-${{ matrix.python-version }}.node" # this name is referenced in above in native_linux
553+
name: "native-linux-x64-glibc-${{ matrix.python-version }}.node"
554554
path: ./packages/cubejs-backend-native/
555555
- name: Install Node.js ${{ matrix.node-version }}
556556
uses: actions/setup-node@v4
@@ -643,7 +643,7 @@ jobs:
643643
OUT: ${{ steps.get-tag.outputs.sha }}
644644

645645
docker-dev:
646-
needs: [latest-tag-sha]
646+
needs: [latest-tag-sha, build-native-linux]
647647
if: (needs['latest-tag-sha'].outputs.sha != github.sha)
648648
name: Build & Test :dev for ${{ matrix.name }} without pushing
649649
runs-on: ubuntu-22.04
@@ -686,7 +686,7 @@ jobs:
686686
- name: Download backend-native artifact
687687
uses: actions/download-artifact@v4
688688
with:
689-
name: "native-linux-x64-glibc-${{ env.PYTHON_VERSION_CURRENT }}.node" # this name is referenced in above in native_linux
689+
name: "native-linux-x64-glibc-${{ env.PYTHON_VERSION_CURRENT }}.node"
690690
path: ./packages/cubejs-backend-native/
691691
- name: Install Node.js ${{ matrix.node-version }}
692692
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)