From 05dd9cd3962eac8196b92d2d5c636ce88dcc6336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Rozs=C3=ADval?= Date: Tue, 31 Oct 2023 11:13:23 +0100 Subject: [PATCH] ci: remove unnecessary local .npmrc reset in release pipeline --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1ca7af1..c505f44 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,6 +17,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Setup pnpm uses: pnpm/action-setup@v2 with: @@ -53,7 +55,6 @@ jobs: run: | git config user.name "GitHub Actions" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git checkout -- .npmrc git add . git diff-index --quiet HEAD || git commit -m "chore: release" - name: Create git tags