Skip to content

Commit

Permalink
add CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
paroj committed Apr 11, 2024
1 parent 53eada4 commit 6d0ee37
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI Build
on:
push:
branches: [edge]
tags: ["*"]
pull_request:
branches: [edge]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: android-actions/setup-android@v3
- uses: actions/checkout@v4
- name: Build
run: sh gradlew --no-daemon assembleRelease
- uses: actions/upload-artifact@v4
with:
name: DSub2000 APK
path: app/build/outputs/apk/floss/release/*-release.apk
compression-level: 0

0 comments on commit 6d0ee37

Please sign in to comment.