Skip to content

Commit

Permalink
Merge pull request #340 from doronz88/feature/upload_release_binaries
Browse files Browse the repository at this point in the history
server-publish: Upload artifact to GitHub release
  • Loading branch information
doronz88 authored Jan 23, 2024
2 parents d2cc5b0 + d0fa3c0 commit 89d2255
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/server-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,13 @@ jobs:
with:
name: rpcserver_macosx
path: ./src/rpcserver/build/rpcserver_macosx

- name: Upload server artifacts to GitHub Release
if: github.event_name == 'release'
uses: softprops/action-gh-release@v1
with:
files: |
src/rpcserver/build/rpcserver_linux
src/rpcserver/build/rpcserver_ios
src/rpcserver/build/rpcserver_macosx
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 89d2255

Please sign in to comment.