A fork of Simple Time Tracker with WearOS support. (Now integrated upstream)
0

Configure Feed

Select the types of activity you want to include in your feed.

add github action to manually build debug

authored by

Anton Razinkov and committed by
GitHub
(Mar 11, 2023, 11:21 AM +0300) 7a12dc47 beb74245

+25
+25
.github/workflows/github_build.yml
··· 1 + name: Build 2 + on: 3 + workflow_dispatch 4 + jobs: 5 + build: 6 + runs-on: ubuntu-latest 7 + timeout-minutes: 60 8 + 9 + steps: 10 + - name: Check out code 11 + uses: actions/checkout@v2 12 + 13 + - name: Setup Java 14 + uses: actions/setup-java@v1 15 + with: 16 + java-version: '11' 17 + 18 + - name: Build 19 + run: ./gradlew assembleDebug 20 + 21 + - name: Upload 22 + uses: actions/upload-artifact@v2 23 + with: 24 + name: app-debug.apk 25 + path: app/build/outputs/apk/debug/app-debug.apk