Skip to content

Commit

Permalink
Merge pull request #515 from fishbrain/big-old-refactor
Browse files Browse the repository at this point in the history
Update release action
  • Loading branch information
lhansford authored Aug 30, 2024
2 parents ff2140c + 398c238 commit f3d0e38
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

jobs:
publish:
publish-base:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -17,3 +17,17 @@ jobs:
- uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/base

publish-react:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

- uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
with:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/react

0 comments on commit f3d0e38

Please sign in to comment.