-
Notifications
You must be signed in to change notification settings - Fork 1
94 lines (85 loc) · 1.88 KB
/
release.yml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Release
on:
push:
branches:
- main
- beta
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
# Install dependencies
- name: Install dependencies
run: |
cd ui
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
yarn install --frozen-lockfile
=======
npm ci
>>>>>>> 8f6b877 (chore: cleanup)
=======
yarn install --frozen-lockfile
>>>>>>> 97bbd6c (chore: cleanup)
=======
yarn install --frozen-lockfile
>>>>>>> d5010de0e3fd553e78cf7bf103a97e76e5899462
# Build the project
- name: Build
run: |
cd ui
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
yarn build
=======
npm run build
>>>>>>> 8f6b877 (chore: cleanup)
=======
yarn build
>>>>>>> 97bbd6c (chore: cleanup)
=======
yarn build
>>>>>>> d5010de0e3fd553e78cf7bf103a97e76e5899462
# Audit signatures
- name: Audit
run: |
cd ui
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
yarn audit --groups dependencies
=======
npm audit signatures
>>>>>>> 8f6b877 (chore: cleanup)
=======
yarn audit --groups dependencies
>>>>>>> 97bbd6c (chore: cleanup)
=======
yarn audit --groups dependencies
>>>>>>> d5010de0e3fd553e78cf7bf103a97e76e5899462
# Release
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
<<<<<<< HEAD
<<<<<<< HEAD
NPM_TOKEN: ${{ secrets.NPM_TOKEN_UI_WRITE }}
=======
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
>>>>>>> 8f6b877 (chore: cleanup)
=======
NPM_TOKEN: ${{ secrets.NPM_TOKEN_UI_WRITE }}
>>>>>>> d5010de0e3fd553e78cf7bf103a97e76e5899462
run: |
cd ui
npx semantic-release