Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vishakh-abhayan authored Nov 26, 2023
1 parent d9a30f2 commit 14d42b8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v2
- name: node
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 16 # Updated to Node.js 16
registry-url: https://registry.npmjs.org
- name: publish
- name: Install dependencies
run: npm install
- name: Publish to npm
run: npm publish --access public
working-directory: ./
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH}}
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH }}

0 comments on commit 14d42b8

Please sign in to comment.