Skip to content

Commit

Permalink
build: fix publish related commands
Browse files Browse the repository at this point in the history
  • Loading branch information
barona-mika-vilpas committed Jan 15, 2024
1 parent 03e25af commit 88db6ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ jobs:
id: deployment
uses: actions/deploy-pages@v2
- name: publish
run: yarn publish
run: yarn do-publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"test": "jest --coverage",
"build": "rm -rf dist/ && tsc",
"docs": "typedoc --out docs",
"do-publish": "yarn run build; node dist/publish.js; cd .tmp/publish; yarn publish",
"do-publish": "yarn build && yarn npm publish",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix src/**/*.ts",
"lint:fix": "run-s eslint:fix prettier:fix",
Expand Down

0 comments on commit 88db6ce

Please sign in to comment.