diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 000000000..cdfa6a673 --- /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 icsopenvpnDebugSign=true > ~/.gradle/gradle.properties + - name: Checkout the code + uses: actions/checkout@v2 + with: + submodules: true + - name: Build the app + run: ./gradlew assembleUiRelease diff --git a/settings.gradle.kts b/settings.gradle.kts index e1e8d4fd8..5e47f404f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -6,3 +6,4 @@ include(":main") include(":tlsexternalcertprovider") include(":remoteExample") +include(":yubikeyplugin") \ No newline at end of file