Betaflight Configurator 10.10.0 Release Candidate 2 #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This is triggered by the publishing of a release, and will build the assets and attach them. | |
name: On Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
ci: | |
name: CI | |
uses: ./.github/workflows/ci.yml | |
with: | |
debug_build: false | |
release: | |
name: Attach Release Artifacts | |
needs: ci | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v3 | |
- name: Fetch build artifacts | |
uses: actions/download-artifact@v3 | |
- name: List assets | |
run: ls -al Betaflight-*/* | |
- name: Attach assets to release | |
run: | | |
set -x | |
assets=() | |
for asset in Betaflight-*/*; do | |
assets+=("-a" "$asset") | |
echo "$asset" | |
done | |
tag_name="${GITHUB_REF##*/}" | |
hub release edit "${assets[@]}" -m "" "$tag_name" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |