Skip to content

Commit

Permalink
workflows: add artefact publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
julianoes committed Oct 19, 2020
1 parent 29b29de commit 5eff7c1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,15 @@ jobs:
- name: Check the artifact
run: |
file "${PWD}/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: "${PWD}/install/bin/mavsdk_server"
asset_name: 'mavsdk_server_musl_${{ matrix.arch }}'
tag: ${{ github.ref }}
overwrite: true

px4-sitl-older:
name: PX4 SITL ${{ matrix.px4_version }} (ubuntu-18.04)
Expand Down

0 comments on commit 5eff7c1

Please sign in to comment.