-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (37 loc) · 1.06 KB
/
build.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
name: build
on:
push:
branches:
- "md3"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.sha }}
lfs: true
- uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm type-check
- name: Build
run: pnpm build
- name: Rename dist
run: mkdir Matecho && mv dist Matecho/Matecho
- name: Upload artifact
id: artifact-upload
uses: actions/upload-artifact@v4
with:
name: Matecho-${{ github.sha }}
path: Matecho
- name: Update deployment
run: "curl -s -m 5 -H 'X-Authorization: ${{ secrets.update_access_token }}' https://matecho-dev.zapic.moe/index.php/UpdateMatecho?artifact_id=${{ steps.artifact-upload.outputs.artifact-id }} || true"