Skip to content

feat[build]: git workflow add for setup #1

feat[build]: git workflow add for setup

feat[build]: git workflow add for setup #1

Workflow file for this run

name: Setup Workflow CI
#on: workflow_call
#jobs:
# setup_java:
# runs-on: macos-latest
#
# steps:
# - name: checkout
# uses: actions/checkout@v4
#
# - name: setup JDK 19
# uses: actions/setup-java@v4
# with:
# java-version: '19'
# distribution: 'corretto'
# cache: 'gradle'
# # cache-dependency-path: | # optional
# # sub-project/*.gradle*
# # sub-project/**/gradle-wrapper.properties
#
# - name: Grant execute permission for gradlew
# run: chmod +x gradlew
#
# - name: Build with Gradle
# run: ./gradlew buildDebug --console=plain
# env:
# CLIENT_ID: ${{ secrets.CLIENT_ID }}