diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ba485570..f07c5db0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Compile Starter Project + - name: Compile beats-time app run: make working-directory: 'apps/beats-time/make' - + - name: Upload UF2 + uses: actions/upload-artifact@v2 + with: + name: watch.uf2 + path: apps/beats-time/make/build/watch.uf2 |