From de594afb82c0d4f46e5caf24fec61ced02f2fd1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20Lobo=20=F0=9F=98=8E?= Date: Thu, 26 Sep 2024 16:16:18 +0530 Subject: [PATCH] publish-npm pipeline fix --- .github/workflows/publish-npm.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 0efd9ef0..892811f1 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -20,7 +20,14 @@ jobs: uses: actions/checkout@v2 with: node-version: ${{ matrix.node-version }} - + + - name: Update Git Config + run: | + # Modify git config to add user name and email + git config user.name "Paul Lobo (Auto)" + git config user.email "paullobo500@gmail.com" + shell: bash + - name: Bump version run: npm version patch @@ -36,13 +43,6 @@ jobs: - name: Install Dependencies run: rm -rf package-lock.json && rm -rf dist && npm install - - name: Update Git Config - run: | - # Modify git config to add user name and email - git config user.name "Paul Lobo (Auto)" - git config user.email "paullobo500@gmail.com" - shell: bash - - name: Build Package run: npm run build-bundle