Browse Source

github: workflows: Upload mac artifact

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
QGC4.4
Patrick José Pereira 4 years ago committed by Lorenz Meier
parent
commit
3196c69c19
  1. 7
      .github/workflows/buildQGCandDeploy.yml

7
.github/workflows/buildQGCandDeploy.yml

@ -78,6 +78,11 @@ jobs:
make -j$JOBS make -j$JOBS
ccache -s ccache -s
- uses: actions/upload-artifact@master
with:
name: QGroundControl.dmg
path: ${{ runner.temp }}/shadow_build_dir/package/QGroundControl.dmg
- name: Upload build artifacts to release - name: Upload build artifacts to release
uses: svenstaro/upload-release-action@v2 uses: svenstaro/upload-release-action@v2
with: with:
@ -86,4 +91,4 @@ jobs:
asset_name: QGroundControl.dmg asset_name: QGroundControl.dmg
tag: ${{ github.ref }} tag: ${{ github.ref }}
overwrite: true overwrite: true
body: "QGgroundControl ${{ steps.get_version.outputs.VERSION }} test" body: "QGroundControl ${{ steps.get_version.outputs.VERSION }} test"
Loading…
Cancel
Save