From e4597ec153c83894eef8a66a9deefae9080cfe51 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Fri, 16 Apr 2021 13:23:45 +0200 Subject: Add github actions --- .github/workflows/build.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build.yaml (limited to '.github') 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 -- cgit v1.2.3