-
Notifications
You must be signed in to change notification settings - Fork 36
59 lines (55 loc) · 1.56 KB
/
build.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
name: Release Main Zip
on:
push:
branches: [main, master]
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'Dockerfile'
- 'docker-compose.yml'
- '.gitignore'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
issues: write
jobs:
build:
timeout-minutes: 120
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Install dependencies
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: 'TODO to Issue'
uses: alstr/todo-to-issue-action@v4
with:
IDENTIFIERS: '[{"name": "FEATURE", "labels": ["enhancement"]}, {"name": "BUG", "labels": ["bug"]}]'
ISSUE_TEMPLATE: '**Describe the reason of this issue**\n{{ body }}\n\nThe issue is present here:\n\n{{ snippet }}'
- name: Build static files
run: pnpm run build
- name: Zip Release
uses: TheDoctor0/[email protected]
with:
type: 'zip'
filename: 'release.zip'
directory: './dist'
path: '.'
- name: Upload Release
uses: ncipollo/[email protected]
with:
tag: 'Admin'
artifacts: './dist/release.zip'
allowUpdates: true
replacesArtifacts: true
body: |
${{ github.event.head_commit.message }}
token: ${{ secrets.GITHUB_TOKEN }}