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