From 7ea41b264838e10c960f73dba73c58f015396e6c Mon Sep 17 00:00:00 2001 From: Tim203 Date: Mon, 13 Feb 2023 21:51:07 +0100 Subject: [PATCH] Let's see if the setup-java action's cache is helpful & fixed building --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6fb75dec..8e9b890a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,6 +15,7 @@ jobs: with: java-version: 8 distribution: temurin + cache: gradle - name: Build uses: gradle/gradle-build-action@v2 @@ -24,7 +25,7 @@ jobs: - name: Publish uses: gradle/gradle-build-action@v2 env: - ORG_GRADLE_PROJECT_geysermcUsername: "${{ secrets.DEPLOY_USER }}" - ORG_GRADLE_PROJECT_geysermcPassword: "${{ secrets.DEPLOY_PASS }}" + ORG_GRADLE_PROJECT_geysermcUsername: ${{ vars.DEPLOY_USER }} + ORG_GRADLE_PROJECT_geysermcPassword: ${{ secrets.DEPLOY_PASS }} with: arguments: publish \ No newline at end of file