From e225026b2f3ade944bccdc48bf17a365a1490581 Mon Sep 17 00:00:00 2001 From: HUI Date: Thu, 25 May 2023 19:14:41 +0800 Subject: [PATCH] ci: add `github.skipChecks` to publish --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 561255ba5..75d11e4e6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,7 @@ jobs: run: | git config --global user.email "${{ secrets.GIT_EMAIL }}" git config --global user.name "${{ secrets.GIT_USERNAME }}" - yarn release ${{ inputs.increment }} --ci --no-git.tag --no-github.release --npm.allowSameVersion + yarn release ${{ inputs.increment }} --ci --no-git.tag --no-github.release --npm.allowSameVersion --github.skipChecks - name: Get Package Info if: ${{ !inputs.dry-run }} @@ -65,4 +65,4 @@ jobs: - name: Release if: ${{ !inputs.dry-run }} run: | - yarn release ${{ inputs.increment }} --ci --no-npm --no-git.commit + yarn release ${{ inputs.increment }} --ci --no-npm --no-git.commit --github.skipChecks