Bump minor version and tweak deploy script. #524
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
on: | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Java JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 17 | |
- uses: actions/checkout@v2 | |
- name: Run build | |
run: ./gradlew build assembleDebug assembleDebugAndroidTest --no-daemon | |
env: | |
SERVER_URL: 'http://example.com' | |
API_KEY: 'apikey' |