-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (58 loc) · 1.97 KB
/
release.yaml
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build & Lint & Test & Release
on:
workflow_dispatch:
env:
NODE_VERSION: lts/*
GPG_KEY_ID: ${{ vars.GPG_KEY_ID }}
jobs:
main:
name: Build & Lint & Test & Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: ⤵️ Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🙂↔️ Import GPG key
run: |
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
echo -e "5\ny\n" | gpg --batch --yes --command-fd 0 --edit-key ${{ env.GPG_KEY_ID }} trust quit
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
- name: 🫡 Setup Git
run: |
git config --global user.name "njfamirm-bot"
git config --global user.email "[email protected]"
git config --global user.signingkey ${{ env.GPG_KEY_ID }}
git config --global commit.gpgsign true
- name: 🏗 Setup nodejs
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: 🏗 Setup nodejs corepack
run: corepack enable
- name: 🏗 Get yarn config
id: yarn_config
run: echo "cache_folder=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: 🏗 Cache Layer
uses: actions/cache@v4
with:
path: ${{ steps.yarn_config.outputs.cache_folder }}
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: 🏗 Install dependencies
run: yarn install --immutable
- name: 🚀 Build Typescript
run: yarn build
- name: 🚀 Run ESLint
run: yarn lint
- name: 🧪 Run Test
run: yarn test
- name: 🤖 Get Release
run: yarn release -y
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}