diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-12-02 14:08:30 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-08 00:51:23 -0500 |
commit | 7ca90540aed50179fd6be7e910871543f9005077 (patch) | |
tree | b44fed93df73a24a82a2413bda82a690bc16bfdc /.github/workflows/build.yml | |
parent | b26ceebd4c4be19e5147beac747c22e4e6f710b4 (diff) |
ci(build): refactor archiving to support multiple paths
Allows multiple files to be stored in a single archive.
PR: #485
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c8b3a90..2d2204a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -125,4 +125,5 @@ jobs: uses: actions/upload-artifact@v2 with: name: "${{ steps.variables.outputs.artifact-name }}-uf2" - path: build/zephyr/zmk.uf2 + path: | + build/zephyr/zmk.uf2 |