store elfs (for later debugging) in github artifacts

This commit is contained in:
Kevin Hester
2021-05-26 10:21:26 +08:00
parent e7e09cb7ed
commit 42f3154079
3 changed files with 24 additions and 3 deletions

View File

@@ -78,9 +78,16 @@ jobs:
- name: Build everything
run: bin/build-all.sh
- name: Store release zip as an artifact
- name: Store binaries as an artifact
uses: actions/upload-artifact@v2
with:
name: built
path: release/archive/firmware-*.zip
retention-days: 30
- name: Store debugging elf files as an artifact
uses: actions/upload-artifact@v2
with:
name: debug-elfs
path: release/archive/elfs-*.zip
retention-days: 7