From 2921fcb5f902eaf40b515a3a42e3322831eb12a4 Mon Sep 17 00:00:00 2001 From: SherkeyXD <253294679@qq.com> Date: Tue, 18 Jul 2023 23:49:56 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E5=88=A0=E9=99=A4export=E5=90=8E?= =?UTF-8?q?=E9=9D=A2=E5=A4=9A=E4=BD=99=E7=9A=84=E7=A9=BA=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release-ota.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-ota.yml b/.github/workflows/release-ota.yml index ee8ec0669a..ac58ec7337 100644 --- a/.github/workflows/release-ota.yml +++ b/.github/workflows/release-ota.yml @@ -169,8 +169,8 @@ jobs: gh api "/repos/MaaAssistantArknights/MaaAssistantArknights/tarball/$OLD_VERSION" > ${{ runner.temp }}/old.tar.gz tar -xzf ${{ runner.temp }}/new.tar.gz -C ${{ runner.temp }}/new tar -xzf ${{ runner.temp }}/old.tar.gz -C ${{ runner.temp }}/old - export NEW_PATH = "${{ runner.temp }}/new/$(ls ${{ runner.temp }}/new)/docs" - export OLD_PATH = "${{ runner.temp }}/old/$(ls ${{ runner.temp }}/old)/docs" + export NEW_PATH="${{ runner.temp }}/new/$(ls ${{ runner.temp }}/new)/docs" + export OLD_PATH="${{ runner.temp }}/old/$(ls ${{ runner.temp }}/old)/docs" export DOCS_DIFF=$(diff -aqr $NEW_PATH $OLD_PATH) if [ -n "$DOCS_DIFF" ]; then echo "DOCS_DIFF:"