From 3e291b6aaceab12ecd4e7ace42c12e2c9adb4691 Mon Sep 17 00:00:00 2001 From: chongqiangchen Date: Sun, 2 Jun 2024 01:48:03 +0800 Subject: [PATCH] chore: update sync doc action --- .github/workflows/sync-tutorials.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-tutorials.yml b/.github/workflows/sync-tutorials.yml index 14a2e41d..8d346bbf 100644 --- a/.github/workflows/sync-tutorials.yml +++ b/.github/workflows/sync-tutorials.yml @@ -23,10 +23,11 @@ jobs: sudo apt-get install -y jq - name: Run Sync Script + id: sync run: | chmod +x sync.sh ./sync.sh - echo "{name}={changes}" >> $(cat temp.txt) + echo "::set-output name=changes::$(cat temp.txt)" rm temp.txt - name: Create Pull Request