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 d6f0381 commit 91142b1Copy full SHA for 91142b1
.circleci/config.yml
@@ -22,4 +22,15 @@ jobs:
22
destination: mod_sdk.zip
23
- store_artifacts:
24
path: sdk/lib/libserver_modloader.so
25
- destination: libserver_modloader.so
+ destination: libserver_modloader.so
26
+ publish-github-release:
27
+ docker:
28
+ - image: cibuilds/github:0.10
29
+ steps:
30
+ - attach_workspace:
31
+ at: ./artifacts
32
+ - run:
33
+ name: Publish GitHub release
34
+ command: |
35
+ ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} \
36
+ -delete "Continous Build" ./artifacts/
0 commit comments