Skip to content

Bump org.jetbrains.kotlinx:kotlinx-coroutines-android #322

Bump org.jetbrains.kotlinx:kotlinx-coroutines-android

Bump org.jetbrains.kotlinx:kotlinx-coroutines-android #322

Workflow file for this run

name: Android CI
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: temurin
cache: gradle
- name: Check with Gradle
run: ./gradlew check
- name: Setup keystore
run: |
echo "${{ secrets.RELEASE_KEYSTORE }}" | base64 -d > ${{ runner.workspace }}/ziti-mobile.jks
- name: Build Android Debug Bundle
run: ./gradlew :app:bundleDebug
env:
RELEASE_KEYSTORE: ${{ runner.workspace }}/ziti-mobile.jks
RELEASE_KEYSTORE_PASSWORD: ${{ secrets.RELEASE_KEYSTORE_PASSWORD }}
- uses: actions/upload-artifact@v2
with:
name: ziti-mobile-edge.aab
path: app/build/outputs/bundle/debug/*.aab