From ff130195517d3ae1a883150787246460e4bd71ec Mon Sep 17 00:00:00 2001 From: Julian Mills Date: Tue, 27 Aug 2024 10:51:48 +0200 Subject: [PATCH] fix: disable git checks during publish --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 05dc769..c5c674f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,6 +29,6 @@ jobs: run: pnpm test - name: Publish - run: pnpm publish -r --dry-run --access public + run: pnpm publish -r --dry-run --no-git-checks --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}