From 8ee2104f11675251e91c92cf8fa393b86a4d33de Mon Sep 17 00:00:00 2001 From: Josh Rackham <144251043+jrackham-mo@users.noreply.github.com> Date: Mon, 8 Jun 2026 16:25:14 +0100 Subject: [PATCH 1/2] Continue on error after linkcheck fail on push to main --- .github/workflows/ci-documentation.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-documentation.yml b/.github/workflows/ci-documentation.yml index c9bfc3f..f7245cf 100644 --- a/.github/workflows/ci-documentation.yml +++ b/.github/workflows/ci-documentation.yml @@ -36,6 +36,7 @@ jobs: - name: Linkcheck shell: micromamba-shell {0} run: make --directory=docs linkcheck + continue-on-error: ${{ github.event_name == "push" }} - name: Upload pages artifact uses: actions/upload-pages-artifact@v4 From 1713e094fc2ad7b16521415e4dd37b8315ba4a5f Mon Sep 17 00:00:00 2001 From: Josh Rackham <144251043+jrackham-mo@users.noreply.github.com> Date: Mon, 8 Jun 2026 16:48:23 +0100 Subject: [PATCH 2/2] Attempt to fix workflow conditional syntax --- .github/workflows/ci-documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-documentation.yml b/.github/workflows/ci-documentation.yml index f7245cf..2c0f19c 100644 --- a/.github/workflows/ci-documentation.yml +++ b/.github/workflows/ci-documentation.yml @@ -36,7 +36,7 @@ jobs: - name: Linkcheck shell: micromamba-shell {0} run: make --directory=docs linkcheck - continue-on-error: ${{ github.event_name == "push" }} + continue-on-error: ${{ github.event_name == 'push' }} - name: Upload pages artifact uses: actions/upload-pages-artifact@v4