From 91612434d83047d39baedd690cd2a4db0cfe2ce3 Mon Sep 17 00:00:00 2001 From: tooomm Date: Wed, 22 Jul 2026 20:25:36 +0200 Subject: [PATCH] wording --- .github/workflows/documentation-build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/documentation-build.yml b/.github/workflows/documentation-build.yml index 1266c1746..4867c1f07 100644 --- a/.github/workflows/documentation-build.yml +++ b/.github/workflows/documentation-build.yml @@ -11,10 +11,10 @@ on: - published # publishing of stable releases and pre-releases workflow_dispatch: inputs: - evict_cache: - description: "Evict Doxygen graph cache" + graph_cache: + description: "Use Doxygen graph cache? (Disabling will rebuild the GH Pages folder from scratch)" type: boolean - default: false + default: true env: COCKATRICE_REF: ${{ github.ref_name }} # tag name if the commit is tagged, otherwise branch name @@ -54,7 +54,7 @@ jobs: fi - name: "Restore graph cache from GH Pages repo" - if: github.event_name != 'workflow_dispatch' || inputs.evict_cache == false + if: github.event_name != 'workflow_dispatch' || inputs.graph_cache == true continue-on-error: true uses: actions/checkout@v7 with: