From 2b2e2cded82a5629ff412d0e0167aa556ce98705 Mon Sep 17 00:00:00 2001 From: Marco Falkenberg Date: Tue, 23 Jan 2024 16:12:22 +0100 Subject: [PATCH] Fix access issue to push new version --- .github/workflows/publish.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 04fe1cbb6..ea9b7fbfa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,9 +27,6 @@ jobs: - name: "Version and publish" env: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - GH_TOKEN: ${{ secrets.GH_TOKEN }} run: | - git config user.name "${{ secrets.RELEASE_USER }}" - git config user.email "${{ secrets.RELEASE_USER_EMAIL }}" - yarn lerna version --conventional-commits --conventional-prerelease=* --yes + yarn lerna version --conventional-commits --conventional-prerelease=* --yes --no-push yarn lerna publish from-git --yes --no-private