diff options
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 |