From 36976a917272fb91058728c6e68ec0b722f4df4a Mon Sep 17 00:00:00 2001 From: Zakary Date: Tue, 17 Nov 2020 14:33:40 +0800 Subject: [PATCH] chore(release): publish 3.0.17 [auto review] (#8060) * chore(release): publish 3.0.17 * fix: auto-review ci --- .github/workflows/auto-review.yml | 2 +- .github/workflows/publish.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-review.yml b/.github/workflows/auto-review.yml index e27cf70dbed6..0aa279dcab4b 100644 --- a/.github/workflows/auto-review.yml +++ b/.github/workflows/auto-review.yml @@ -18,7 +18,7 @@ jobs: run: echo "$GITHUB_CONTEXT" - name: Get commit message run: | - echo ::set-env name=commitmsg::$(git log --format=%B -n 1 ${{ github.event.after }}) + echo "name=commitmsg::$(git log --format=%B -n 1 ${{ github.event.after }})" >> $GITHUB_ENV - name: Show commit message run : echo $commitmsg - name: Auto reviews branches diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6d0c3afbc801..0f5a4132a534 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,7 +21,7 @@ jobs: run: echo "$GITHUB_CONTEXT" - name: Get commit message run: | - echo ::set-env name=commitmsg::$(git log --format=%B -n 1 ${{ github.event.after }}) + echo "name=commitmsg::$(git log --format=%B -n 1 ${{ github.event.after }})" >> $GITHUB_ENV - name: Show commit message run : echo $commitmsg - name: Setup Node ${{ matrix.node_version }} @@ -51,7 +51,7 @@ jobs: shell: bash -ex {0} run: | CURRENT_VERSION=$(node -p 'require("./lerna.json").version') - echo "::set-env name=CURRENT_VERSION::${CURRENT_VERSION}" + echo "name=CURRENT_VERSION::${CURRENT_VERSION}" >> $GITHUB_ENV - name: Tag Check if: startsWith( env.commitmsg , 'chore(release):' ) id: tag_check