-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (44 loc) · 1.16 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
name: Release
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Release:
name: 🚀 Release 🚀
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [20]
os: ["ubuntu-latest"]
steps:
- name: 🛒 Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: ⚙️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: 📥 Install deps
run: npm install
- name: 🏗 Build
run: npm run build --if-present
- name: 📝 Format
run: npm run format --if-present
- name: 🚨 test
run: npm run test --if-present
- name: 🚀 Release
run: npm run release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }}