From 3fd551b6d2d7c0b4f298da5ae0b66ad9fa6dd0fb Mon Sep 17 00:00:00 2001 From: iphydf Date: Thu, 7 Nov 2024 21:32:20 +0000 Subject: [PATCH] fix: It's `git-patch` instead of `patch`. --- .github/workflows/common-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/common-ci.yml b/.github/workflows/common-ci.yml index 1ed6f2d..b75d4b3 100644 --- a/.github/workflows/common-ci.yml +++ b/.github/workflows/common-ci.yml @@ -24,10 +24,10 @@ jobs: uses: restyled-io/actions/run@v4 - name: Copy patch to staged artifact - if: ${{ steps.restyler.outputs.patch }} + if: ${{ steps.restyler.outputs.git-patch }} run: | cat >>/tmp/restyled.diff <<'EOM' - ${{ steps.restyler.outputs.patch }} + ${{ steps.restyler.outputs.git-patch }} EOM - id: upload