Skip to content

Commit 04fcb21

Browse files
authored
Separate the artifacts
1 parent d72a561 commit 04fcb21

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,13 @@ jobs:
1616
run: |
1717
mkdir artifacts && cd sdk &&
1818
zip -r ../artifacts/mod_sdk.zip . && cp lib/libserver_modloader.so ../artifacts && cd ..
19-
- name: Archive artifacts
19+
- name: Artifact - libserver_modloader.so
2020
uses: actions/upload-artifact@v3
2121
with:
22-
name: artifacts
23-
path: artifacts
22+
name: libserver_modloader.so
23+
path: artifacts/libserver_modloader.so
24+
- name: Artifact - mod_sdk.zip
25+
uses: actions/upload-artifact@v3
26+
with:
27+
name: mod_sdk.zip
28+
path: artifacts/mod_sdk.zip

0 commit comments

Comments
 (0)