generated from inNENU/2023-resource
-
-
Notifications
You must be signed in to change notification settings - Fork 11
81 lines (69 loc) · 1.78 KB
/
resource.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
name: Deploy resource
on:
push:
branches:
- main
paths:
- "config/**"
- "data/**"
- "pages/**"
- "file/**"
- "img/**"
- "scripts/**"
- "site/**"
- "package.json"
permissions:
contents: write
jobs:
generate-data:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Write env files
run: |
echo "${{ secrets.ENV }}" > .env
- name: Generate resource
run: |
pnpm resource:generate
- name: Sync OSS
run: |
pnpm sync:oss
- name: Deploy to resource branch
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: resource
folder: .resource
single-commit: true
deploy-server:
runs-on: ubuntu-latest
needs: generate-data
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: resource
fetch-depth: 0
- name: Config environment
run: |
mkdir -p ~/.ssh/
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan res.innenu.com >> ~/.ssh/known_hosts
git config --global user.name 'Mr.Hope'
git config --global user.email 'mister-hope@outlook.com'
- name: Deploy
run: |
git push -f git@res.innenu.com:/www/wwwroot/innenu-res resource
ssh git@res.innenu.com "cd /www/wwwroot/innenu-res && git reset --hard HEAD"