From 7438ad89dbe1d645e3d36923cc4eccc2acfb6571 Mon Sep 17 00:00:00 2001 From: Jonas Rutishauser Date: Wed, 23 Oct 2024 20:15:33 +0200 Subject: [PATCH] Fix site deployment --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3947636..5992a2b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - name: Build with Maven run: mvn -B -V -e clean verify - name: Deploy Site - if: ${{ matrix.java == '1.8' && github.event_name != 'release' && !startsWith(github.event_name, 'pull_request') }} + if: ${{ matrix.java == '8' && github.event_name != 'release' && !startsWith(github.event_name, 'pull_request') }} run: mvn -B -e site-deploy env: GITHUB_TOKEN: ${{ github.token }}