diff options
author | Arne Schwabe <arne@rfc2549.org> | 2021-04-16 13:23:45 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2021-04-16 17:49:31 +0200 |
commit | e4597ec153c83894eef8a66a9deefae9080cfe51 (patch) | |
tree | a62e4bd697567b2946e7c8a4825264081de88ebb /.github/workflows | |
parent | 6f12f5fffbe9f4eeb4a94e1b3d22b6cc9a3603a5 (diff) |
Add github actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..7b07a961 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,16 @@ +# The name of our workflow +name: Build +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Use debug signing + run: mkdir -p ~/.gradle && echo -e "icsopenvpnDebugSign=true\norg.gradle.jvmargs=-Xmx2048M" > ~/.gradle/gradle.properties + - name: Checkout the code + uses: actions/checkout@v2 + with: + submodules: true + - name: Build the app + run: ./gradlew assembleUiRelease |