From 3ce94b85b261e3ee24b3cc5b06d41bc160271e5b Mon Sep 17 00:00:00 2001 From: Danil Nikolaev Date: Wed, 4 Aug 2021 14:03:47 -0700 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e6790ec..d7075a4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,10 +21,15 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 + + - name: set up JDK + uses: actions/setup-java@v1 + with: + java-version: 1.8 # Runs a single command using the runners shell - name: Build the App with permissions - run: chmod +x ./gradlew build + run: chmod +x ./gradlew build --info --stacktrace # Runs a set of commands using the runners shell - name: Run a multi-line script