From c1d57f3e5fd91b5eaa201ea683eff942d1ecf94b Mon Sep 17 00:00:00 2001 From: jrandolf <101637635+jrandolf@users.noreply.github.com> Date: Fri, 1 Jul 2022 16:55:12 +0200 Subject: [PATCH] chore: fix bad revision (#8617) --- .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 e7f06409..7f516cb4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: - name: Check if docs need to be deployed id: needs_deploying run: | - if [[ $(git diff @~ -- ./docs ./website) ]]; then + if [[ $(git diff HEAD^ -- ./docs ./website) ]]; then needs_deploying=true else needs_deploying=false