Consider machine ready as soon as GC is seen #127
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
name: Archive Build | |
on: [push, pull_request] | |
jobs: | |
archive: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo and submodules | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Build Firmware | |
uses: ./.github/actions/build | |
with: | |
BUILD_WRAPPER_OUT_DIR: build_wrapper_out_dir | |
- name: Archive build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{format('{0}-{1}',github.sha,github.run_number)}} | |
path: build/*.hex |