summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yaml
blob: 7b07a961dab656331d76e4d09fc882bfd267f272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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