diff options
author | Willian Paixao <willian@ufpa.br> | 2021-12-11 20:33:58 +0100 |
---|---|---|
committer | Willian Paixao <willian@ufpa.br> | 2021-12-11 20:33:58 +0100 |
commit | d46cc407dfec340606ab4d5841a79b3571ee122a (patch) | |
tree | 6b62dcbdf6e5a6866d784522e0a677fb3f5e156e /.github | |
parent | 095466c27046cbe88925ceedf5cb2c1c550c8008 (diff) | |
download | Sensor-Watch-d46cc407dfec340606ab4d5841a79b3571ee122a.tar.gz Sensor-Watch-d46cc407dfec340606ab4d5841a79b3571ee122a.tar.bz2 Sensor-Watch-d46cc407dfec340606ab4d5841a79b3571ee122a.zip |
update makefile and pipeline workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f07c5db0..7112d820 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,11 +10,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Compile beats-time app + - name: Compile starter-project app run: make - working-directory: 'apps/beats-time/make' + working-directory: 'apps/starter-project' + - name: Compile accelerometer-test app + run: make + working-directory: 'apps/accelerometer-test' - name: Upload UF2 uses: actions/upload-artifact@v2 with: - name: watch.uf2 - path: apps/beats-time/make/build/watch.uf2 + name: watch.uf2.uf2 + path: apps/**/build/watch.uf2 |