Skip to content

dry run upload & logs #12

dry run upload & logs

dry run upload & logs #12

Workflow file for this run

name: Build Example
on: [ push, workflow_dispatch ]
jobs:
build:
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 Kts Example App
run: ./gradlew clean :examplekts:assemble
# Run the Gradle Build task
- name: Build Groovy Example App
run: ./gradlew clean :examplegroovy:assemble