Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
223880 committed Jun 27, 2024
1 parent f010b2e commit 9242bd0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4 # Use the latest version
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4 # Use the latest version
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies and build 🔧
run: npm install && npm run build # Changed npm ci to npm install
- name: Install dependencies 🔧
run: npm install

- name: Publish package on NPM 📦
run: npm publish
Expand Down

0 comments on commit 9242bd0

Please sign in to comment.