Skip to content
This repository was archived by the owner on May 2, 2025. It is now read-only.

Commit b1be69d

Browse files
committed
feat(ci): deploy package using GitHub Actions
1 parent 5e0fb0e commit b1be69d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release
2+
on:
3+
push:
4+
5+
jobs:
6+
publish-github-registry:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 22
13+
registry-url: https://npm.pkg.github.com/
14+
- run: yarn install
15+
- run: yarn build
16+
- run: yarn publish
17+
env:
18+
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
19+
permissions:
20+
contents: read
21+
packages: write

0 commit comments

Comments
 (0)