Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,15 @@ jobs:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"

- name: install npm packages
- name: Install npm packages
run: npm install --legacy-peer-deps

- name: publish npm package
- name: Add Automated git user
run: |-
git config user.name "Automated"
git config user.email "actions@users.noreply.github.com"

- name: Publish npm package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading