Skip to content

Commit

Permalink
publish-npm pipeline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paullobofynd committed Sep 26, 2024
1 parent 9314920 commit de594af
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "[email protected]"
shell: bash

- name: Bump version
run: npm version patch

Expand All @@ -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 "[email protected]"
shell: bash

- name: Build Package
run: npm run build-bundle

Expand Down

0 comments on commit de594af

Please sign in to comment.