From d3f7300b685cc9dd13e04298a7986e4472ffaf71 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Tue, 23 Jul 2024 13:52:52 +0200 Subject: [PATCH] don't run linkchecker here --- .github/workflows/preview.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 1afd762a..e5b5f8f5 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -24,7 +24,6 @@ jobs: shell: bash -l {0} run: > set -e - && jupyter-book build jupyterbook --builder linkcheck && jupyter-book build jupyterbook - name: Commit documentation changes to preview branch @@ -43,14 +42,14 @@ jobs: git config --local user.name "GitHub Action" git add . git commit -m "Update documentation" -a || true - + - name: Push documentation changes to preview branch uses: ad-m/github-push-action@77c5b412c50b723d2a4fbc6d71fb5723bcd439aa # latest-main with: branch: ${{ github.head_ref }}-preview directory: gh-pages github_token: ${{ secrets.GITHUB_TOKEN }} - + - name: Leave comment on pull request if: env.COMMENT_ON_PR == 'true' uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7