Skip to content

Commit

Permalink
chore(frontend): use real publish to npm (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lodin authored Sep 8, 2021
1 parent 8bb0e4f commit 3ab0b50
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/frontend-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
- name: Install
run: npm ci
- name: Build
Expand All @@ -40,6 +41,6 @@ jobs:
REPO: ${{ github.repository }}
VERSION_TAG: ${{ github.event.release.tag_name }}
- name: Publish
run: npm run publish
run: npx lerna publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 0 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"build": "lerna run build --include-dependencies",
"lint": "lerna run lint",
"postinstall": "npm run bootstrap",
"publish": "node scripts/dummy-publish-tmp.js",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"typecheck": "lerna run typecheck"
Expand Down
9 changes: 0 additions & 9 deletions frontend/scripts/bump/dummy-publish-tmp.js

This file was deleted.

0 comments on commit 3ab0b50

Please sign in to comment.