Skip to content

Commit

Permalink
hardcode values
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Peterson <[email protected]>
  • Loading branch information
mattp-swirldslabs committed Jun 14, 2024
1 parent 363c698 commit 80764a9
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions .github/workflows/build-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,29 @@

name: "Build Application"
on:
workflow_dispatch:
inputs:
enable-unit-tests:
description: "Unit Testing Enabled"
type: boolean
required: true
default: true
java-distribution:
description: "Java JDK Distribution:"
type: string
required: false
default: "temurin"
java-version:
description: "Java JDK Version:"
type: string
required: false
default: "21.0.1"
enable-spotless-check:
description: "Spotless Check Enabled"
type: boolean
required: false
default: false
push
# workflow_dispatch:
# inputs:
# enable-unit-tests:
# description: "Unit Testing Enabled"
# type: boolean
# required: true
# default: true
# java-distribution:
# description: "Java JDK Distribution:"
# type: string
# required: false
# default: "temurin"
# java-version:
# description: "Java JDK Version:"
# type: string
# required: false
# default: "21.0.1"
# enable-spotless-check:
# description: "Spotless Check Enabled"
# type: boolean
# required: false
# default: false

defaults:
run:
Expand All @@ -61,8 +62,8 @@ jobs:
- name: Setup Java
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
with:
distribution: ${{ inputs.java-distribution }}
java-version: ${{ inputs.java-version }}
distribution: "temurin"
java-version: "21.0.1"

# - name: Setup Gradle
# uses: gradle/gradle-build-action@29c0906b64b8fc82467890bfb7a0a7ef34bda89e # v3.1.0
Expand Down

0 comments on commit 80764a9

Please sign in to comment.