Skip to content

Commit 4ec6b18

Browse files
authored
fix artifact names + destination path (#312)
1 parent 180a8db commit 4ec6b18

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/main.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
./builds/prepare_builds/build_all_projects.sh
5151
- uses: actions/upload-artifact@v4
5252
with:
53-
name: pkg ${{ matrix.os }}
53+
name: pkg no-compat ${{ matrix.os }}
5454
path: |
5555
builds/*/pkg
5656
overwrite: true
@@ -84,7 +84,7 @@ jobs:
8484
npm run test;
8585
- uses: actions/upload-artifact@v4
8686
with:
87-
name: pkg ${{ matrix.os }}
87+
name: pkg compat ${{ matrix.os }}
8888
path: |
8989
rapier-compat/builds/*/pkg
9090
overwrite: true
@@ -96,7 +96,12 @@ jobs:
9696
- uses: actions/checkout@v4
9797
- uses: actions/download-artifact@v4
9898
with:
99-
name: pkg ubuntu-latest
99+
name: pkg no-compat ubuntu-latest
100+
path: builds
101+
- uses: actions/download-artifact@v4
102+
with:
103+
name: pkg compat ubuntu-latest
104+
path: rapier-compat/builds
100105
- uses: actions/setup-node@v4
101106
with:
102107
node-version: "22.x"

0 commit comments

Comments
 (0)