Merge pull request #196 from clholgat/clholgat/garter_carriage #1676
This file contains hidden or 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@v3 | |
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@v3 | |
with: | |
name: ${{format('{0}-{1}',github.sha,github.run_number)}} | |
path: build/*.hex |