Skip to content

Commit

Permalink
Enable Github Actions building
Browse files Browse the repository at this point in the history
  • Loading branch information
hufman committed Sep 5, 2021
1 parent 5edd5e5 commit bc3a993
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build

on:
push:
branches: '*'
pull_request:
types: [opened, synchronize]

jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout the project
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build the project
run: ./gradlew assembleDebug
- name: Upload APKs
uses: actions/upload-artifact@v2
with:
retention-days: 60
name: apk
path: |
*/build/outputs/apk/**/*apk
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit bc3a993

Please sign in to comment.