We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72a561 commit 04fcb21Copy full SHA for 04fcb21
.github/workflows/build.yml
@@ -16,8 +16,13 @@ jobs:
16
run: |
17
mkdir artifacts && cd sdk &&
18
zip -r ../artifacts/mod_sdk.zip . && cp lib/libserver_modloader.so ../artifacts && cd ..
19
- - name: Archive artifacts
+ - name: Artifact - libserver_modloader.so
20
uses: actions/upload-artifact@v3
21
with:
22
- name: artifacts
23
- path: artifacts
+ name: libserver_modloader.so
+ 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