Skip to content

Commit

Permalink
ci: Add github packages
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-t-wang committed Jul 30, 2024
1 parent 15a5f78 commit 64aea92
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
uses: google-github-actions/release-please-action@v3
with:
command: manifest
release-type: node

publish:
needs: release
Expand Down Expand Up @@ -47,3 +48,33 @@ jobs:
run: pnpm publish -r --report-summary
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

publish-github:
needs: release
name: Publish
runs-on: ubuntu-latest
if: ${{ needs.release.outputs.releases_created }}
steps:
- uses: actions/checkout@v3

- uses: pnpm/action-setup@v4
with:
version: 8

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
registry-url: 'https://npm.pkg.github.com'

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Publish
run: pnpm publish -r --report-summary
env:
NODE_AUTH_TOKEN: ${{secrets.GIT_HUB_TOKEN}}

0 comments on commit 64aea92

Please sign in to comment.