Skip to content

v3.7.0-indi3

v3.7.0-indi3 #3

Workflow file for this run

## 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 }}