From c3b02dd0d3047cff9d70333bbe46af5d21cb9618 Mon Sep 17 00:00:00 2001 From: cmarin001 Date: Wed, 27 Mar 2024 12:00:23 -0500 Subject: [PATCH] fix: remove unnecessary code --- .github/workflows/auto-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index f944f41..d287787 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -28,6 +28,12 @@ jobs: - name: Configure npm for Publishing run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc + - name: Commit .npmrc file + run: | + git add .npmrc + git commit -m "Configure npm for publishing" || echo "No changes to commit" + git push + - name: Install Dependencies run: npm install