Skip to content

Update plugin to support libraries and add example lib module #35

Update plugin to support libraries and add example lib module

Update plugin to support libraries and add example lib module #35

Workflow file for this run

name: Build Example
on: [ push, workflow_dispatch ]
jobs:
build_app:
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout
uses: actions/[email protected]
# Setup JDK environment
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: '17'
# Run the Gradle Build task
- name: Build Example App
run: ./gradlew clean :appexample:assemble
build_lib:
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout
uses: actions/[email protected]
# Setup JDK environment
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: '17'
# Run the Gradle Build task
- name: Build Example Lib
run: ./gradlew clean :libexample:assemble