Skip to content

Commit 32071b1

Browse files
committed
fix: use bun target name in download-artifact
1 parent 45db890 commit 32071b1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Download artifacts
7272
uses: actions/download-artifact@v4 # no need zig installation, download artifacts from previous job instead
7373
with:
74-
name: x86_64-linux-gnu
74+
name: linux-x64-gnu
7575
path: zig-out/lib
7676
- name: Install Bun
7777
uses: oven-sh/setup-bun@v2
@@ -103,7 +103,7 @@ jobs:
103103
- name: Download artifacts
104104
uses: actions/download-artifact@v4 # no need zig installation, download artifacts from previous job instead
105105
with:
106-
name: x86_64-linux-gnu
106+
name: linux-x64-gnu
107107
path: zig-out/lib
108108
- name: Install Bun
109109
uses: oven-sh/setup-bun@v2
@@ -126,7 +126,7 @@ jobs:
126126
- name: Download artifacts
127127
uses: actions/download-artifact@v4 # no need zig installation, download artifacts from previous job instead
128128
with:
129-
name: aarch64-linux-gnu
129+
name: linux-arm64-gnu
130130
path: zig-out/lib # download to the same folder of "zig build -Doptimize=ReleaseSafe"
131131
- name: Set up QEMU
132132
uses: docker/setup-qemu-action@v3
@@ -152,7 +152,7 @@ jobs:
152152
- name: Download artifacts
153153
uses: actions/download-artifact@v4 # no need zig installation, download artifacts from previous job instead
154154
with:
155-
name: x86_64-linux-musl
155+
name: linux-x64-musl
156156
path: zig-out/lib # download to the same folder of "zig build -Doptimize=ReleaseSafe"
157157
- name: Setup and run tests using Bun
158158
uses: addnab/docker-run-action@v3
@@ -173,7 +173,7 @@ jobs:
173173
- name: Download artifacts
174174
uses: actions/download-artifact@v4 # no need zig installation, download artifacts from previous job instead
175175
with:
176-
name: aarch64-linux-musl
176+
name: linux-arm64-musl
177177
path: zig-out/lib # download to the same folder of "zig build -Doptimize=ReleaseSafe"
178178
- name: Set up QEMU
179179
uses: docker/setup-qemu-action@v3

0 commit comments

Comments
 (0)