From 2c95cdcf314175f3d6c6cc50f369f86920943d7b Mon Sep 17 00:00:00 2001 From: chenziyi Date: Sun, 17 Nov 2024 23:26:44 +0800 Subject: [PATCH] fix: upgrade workflow set-output --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2b0ca39c..be1e0834 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,9 +2,9 @@ name: deploy on: push: - branches: [master] + branches: [ master ] pull_request: - branches: [master] + branches: [ master ] jobs: test: @@ -22,7 +22,7 @@ jobs: - name: get yarn cache path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v4 id: yarn-cache