Skip to content

Commit

Permalink
workflows: publish artefact for x86_64 as musl bin
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Oct 19, 2020
1 parent 28f190f commit 7a7fa06
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,18 @@ jobs:
run: ./build/release/src/unit_tests_runner
- name: test (mavsdk_server)
run: ./build/release/src/backend/test/unit_tests_backend
- name: Check the artifact
run: |
file "./install/bin/mavsdk_server"
- name: Publish artefacts
if: startsWith(github.ref, 'refs/tags/v')
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: 'install/bin/mavsdk_server'
asset_name: 'mavsdk_server_musl_x86_64'
tag: ${{ github.ref }}
overwrite: true

alpine-linux-qemu:
runs-on: ubuntu-18.04
Expand Down

0 comments on commit 7a7fa06

Please sign in to comment.