From 29255d2af2bba6e534a1f87ff83057c3cdb707cb Mon Sep 17 00:00:00 2001 From: Dominic Saadi <32992335+jtoar@users.noreply.github.com> Date: Tue, 3 May 2022 10:40:59 +0900 Subject: [PATCH] Remove extra checkout in RC workflow (#5414) --- .github/workflows/publish-release-candidate.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/publish-release-candidate.yml b/.github/workflows/publish-release-candidate.yml index 491e363a46e6..24d5f5944173 100644 --- a/.github/workflows/publish-release-candidate.yml +++ b/.github/workflows/publish-release-candidate.yml @@ -56,7 +56,6 @@ jobs: # This is required because lerna uses tags to determine the version. fetch-depth: 0 - - uses: actions/checkout@v3 - name: 🧶 Setup job uses: ./.github/actions/setup_job @@ -74,7 +73,6 @@ jobs: - name: 🚢 Publish run: | - git fetch --depth=1 origin +refs/tags/*:refs/tags/* echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > .npmrc SEMVER=$(basename $(dirname ${{ github.ref_name }})) yarn lerna publish pre$SEMVER --include-merged-tags \