-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (36 loc) · 1.08 KB
/
build_and_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
name: Build and deploy
on:
push:
branches:
- main
workflow_dispatch: ~
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.120.4'
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: none
- name: Build all books
run: ./book build-all
- name: Deploy
uses: appleboy/scp-action@master
with:
host: terminal42.ch
username: terminal
port: ${{ secrets.DEPLOY_PORT }}
key: ${{ secrets.DEPLOY_KEY }}
source: 'build'
target: ${{ secrets.DEPLOY_TARGET_PATH }}
rm: true
strip_components: 1