-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (59 loc) · 1.98 KB
/
deploy.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
name: HedgeDoc x Docusaurus Deploy
on:
push:
branches:
- main
paths:
- 'packages/docusaurus/**' # Adjust the path as needed
- 'packages/schemas/**' # Adjust the path as needed
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Determine target branch
id: determine-branch
run: |
TARGET_BRANCH="Hedgedoc-update"
if [ -z "$(git ls-remote origin refs/heads/Hedgedoc-update)" ]; then
TARGET_BRANCH="main"
fi
echo "TARGET_BRANCH=$TARGET_BRANCH" >> $GITHUB_ENV
- name: Install dependencies in root
run: npm install
- name: Validate schemas
run: |
node ./node_modules/.bin/schemaTools validate-schemas packages/schemas/src
if [ $? -ne 0 ]; then
echo "Error detected. Test failed."
exit 1
fi
- name: Check workflow status
if: failure()
run: exit 1
- name: Install dependencies in /packages/docusaurus
run: |
cd packages/docusaurus
npm run prepare
npm install
- name: Build in /packages/docusaurus
run: |
cd packages/docusaurus
npm run build
- name: Deploy to Remote Server
run: |
mkdir -p $HOME/.ssh
echo "${{ secrets.DEPLOY_KEY }}" > $HOME/.ssh/deploy_key
chmod 600 $HOME/.ssh/deploy_key
rsync -avz --exclude='.git' -e "ssh -o StrictHostKeyChecking=no -i $HOME/.ssh/deploy_key -p ${{ secrets.REMOTE_SERVER_PORT }}" packages/docusaurus/build/ ${{ secrets.REMOTE_SERVER_USERNAME }}@${{ secrets.REMOTE_SERVER_HOST }}:/var/www/nist/
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock