Skip to content

Commit

Permalink
Fix workflows (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
GregBrimble authored Mar 20, 2023
1 parent e2c4350 commit 343ad1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ jobs:
- name: Modify package.json version
run: node .github/version-script.js

- name: Build
run: npm run build

- name: Publish Beta to NPM
run: npm run publish -- --tag beta
run: npm publish --tag beta
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ jobs:

- name: Check linting
run: npm run lint

- name: Build
run: npm run build

0 comments on commit 343ad1f

Please sign in to comment.