-
Notifications
You must be signed in to change notification settings - Fork 57
44 lines (36 loc) · 860 Bytes
/
release.yaml
File metadata and controls
44 lines (36 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Release
on:
push:
branches:
- main
- next
- 15.x.x
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
issues: write
pull-requests: write
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v6
- name: Setup Node.js 24 🧮
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies ⏬
run: npm ci
- name: Check cryptographic signatures for dependencies 🔐
run: npm audit signatures
- name: Build project 🏗
run: npm run build
- name: Semantic Release 🚀
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: npx semantic-release