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 b28eb53 commit 2f0ab22Copy full SHA for 2f0ab22
1 file changed
.circleci/config.yml
@@ -15,14 +15,16 @@ jobs:
15
name: Build
16
command: mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=../sdk/ .. && make && make install && cd ..
17
- run:
18
- name: Zip the SDK
19
- command: cd sdk && zip -r ../sdk.zip . && cd ..
20
- - store_artifacts:
21
- path: sdk.zip
22
- destination: mod_sdk.zip
+ name: Pack the SDK and modloader
+ command: |
+ mkdir artifacts && cd sdk &&
+ zip -r ../artifacts/mod_sdk.zip . && cp lib/libserver_modloader.so ../artifacts && cd ..
+ - persist_to_workspace:
23
+ root: artifacts/
24
+ paths: ".*"
25
- store_artifacts:
- path: sdk/lib/libserver_modloader.so
- destination: libserver_modloader.so
26
+ path: artifacts/
27
+ destination: /
28
publish-github-release:
29
docker:
30
- image: cibuilds/github:0.10
0 commit comments