-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (61 loc) · 1.87 KB
/
Copy pathdeploy.yml
File metadata and controls
78 lines (61 loc) · 1.87 KB
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
name: Deploy static site
on:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: deploy-static-site
cancel-in-progress: true
jobs:
deploy:
name: Build and deploy
runs-on: ubuntu-latest
env:
DEPLOY_HOST: ${{ secrets.DASHBOARD_DEPLOY_HOST }}
DEPLOY_USER: ${{ secrets.DASHBOARD_DEPLOY_USER }}
DEPLOY_KEY: ${{ secrets.DASHBOARD_DEPLOY_KEY }}
DEPLOY_PATH: ${{ secrets.DASHBOARD_DEPLOY_PATH }}
DEPLOY_PORT: ${{ secrets.DASHBOARD_DEPLOY_PORT || '22' }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 10.8.1
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build static files
run: pnpm run build
- name: Configure SSH
shell: bash
run: |
set -euo pipefail
test -n "$DEPLOY_HOST"
test -n "$DEPLOY_USER"
test -n "$DEPLOY_KEY"
test -n "$DEPLOY_PATH"
mkdir -p ~/.ssh
chmod 700 ~/.ssh
printf '%s\n' "$DEPLOY_KEY" > ~/.ssh/deploy_key
chmod 600 ~/.ssh/deploy_key
ssh-keyscan -p "$DEPLOY_PORT" "$DEPLOY_HOST" >> ~/.ssh/known_hosts
- name: Replace Caddy static files
shell: bash
run: |
set -euo pipefail
SSH_TARGET="${DEPLOY_USER}@${DEPLOY_HOST}"
SSH_COMMAND="ssh -i ~/.ssh/deploy_key -p ${DEPLOY_PORT}"
REMOTE_PATH="${DEPLOY_PATH%/}"
$SSH_COMMAND "$SSH_TARGET" "mkdir -p '$REMOTE_PATH'"
rsync -az --delete \
--exclude 'links.json' \
-e "$SSH_COMMAND" \
dist/ "$SSH_TARGET:$REMOTE_PATH/"