Skip to content

Commit

Permalink
Merge pull request #1230 from mavlink/pr-add-x86-musl
Browse files Browse the repository at this point in the history
workflows: publish artefact for x86_64 as musl bin
  • Loading branch information
julianoes committed Oct 19, 2020
2 parents 28f190f + 7a7fa06 commit 148d88e
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 148d88e

Please sign in to comment.