Make private key export backward compatible (#12) #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- "main" | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
branches: | |
- "main" | |
workflow_dispatch: | |
env: | |
java_version: "11" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "${{env.java_version}}" | |
distribution: corretto | |
cache: gradle # caches dependencies (https://github.com/actions/setup-java#caching-packages-dependencies) | |
- name: Build project (Stagenet) | |
run: ./gradlew app:assembleStagenetDebug --stacktrace |