Skip to content

Commit

Permalink
Merge pull request #17 from lidofinance/fix/fix_publish
Browse files Browse the repository at this point in the history
fix: fix publish
  • Loading branch information
DiRaiks authored Sep 4, 2023
2 parents d9dd550 + 70fe4ec commit 8f73602
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish to registry
on:
push:
branches:
- "main"
- 'main'

permissions:
contents: write
Expand Down Expand Up @@ -30,7 +30,9 @@ jobs:
run: yarn build:packages

- name: Authenticate in npm
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc
echo "workspaces-update = false" >> .npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down

0 comments on commit 8f73602

Please sign in to comment.