Skip to content

Commit 6cd94ca

Browse files
committed
feat(release): init
1 parent bf62759 commit 6cd94ca

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/release.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Release
2+
on:
3+
push:
4+
branches: ['naga']
5+
6+
permissions:
7+
# allow pushing commits, creating tags, and modifying repo files
8+
# needed for the workflow to update package.json versions and CHANGELOG files
9+
context: write
10+
pull-request: write
11+
12+
jobs:
13+
release:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
- uses: actions/checkout@v4
18+
19+
- name: Setup Node
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '22.18.0'
23+
24+
- name: Setup PNPM
25+
uses: pnpm/action-step@v4
26+
27+
- name: Install Dependencies
28+
run: pnpm install --frozen-lockfile
29+
30+
- name: Build
31+
run: pnpm build

0 commit comments

Comments
 (0)