Skip to content

Commit

Permalink
Include missing build step
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfdsilva committed Jul 8, 2024
1 parent d7a7760 commit be841d4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ jobs:
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'

- run: yarn
- run: yarn publish -y
- name: Install packages
run: yarn

- name: Build the packages
run: yarn build --no-private

- name: Publishing to NPM 🚀
run: yarn publish -y
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit be841d4

Please sign in to comment.