From 98999fb5513dce16ef872ff79e14d918d8ea3332 Mon Sep 17 00:00:00 2001 From: Kneelawk Date: Fri, 26 Apr 2024 23:27:33 -0700 Subject: [PATCH] Workflower - Changed GitHub CI to run `publish` task so we can make sure that publishing actually works. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4479a3764..807c6a990 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,8 @@ jobs: if: ${{ runner.os != 'Windows' }} run: chmod +x ./gradlew - name: Build - run: ./gradlew build javadoc --no-daemon + # doesn't actually publish, as no secrets are passed in, just makes sure that publishing works + run: ./gradlew publish --no-daemon - name: Capture Build Artifacts if: ${{ runner.os == 'Linux' && matrix.java == '17' }} uses: actions/upload-artifact@v2