Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
cache-dependency-path: ./yarn.lock
cache: "yarn"
node-version: 20
registry-url: "https://registry.npmjs.org"

- uses: bahmutov/npm-install@3e063b974f0d209807684aa23e534b3dde517fd9 # v1.11.2
with:
useLockFile: false

- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive

- name: Build
run: yarn build

Expand All @@ -38,7 +38,7 @@ jobs:

- run: "npm version ${VERSION} --no-git-tag-version"

- uses: JS-DevTools/npm-publish@7f8fe47b3bea1be0c3aec2b717c5ec1f3e03410b # v4.1.1
with:
token: ${{ secrets.NPM_TOKEN }}
access: public
- name: Publish to NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading