-
Notifications
You must be signed in to change notification settings - Fork 14
41 lines (35 loc) · 998 Bytes
/
deploy-dev.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
name: Deploy website to dev server
on:
push:
branches-ignore:
- main
env:
HUGO_ENV: production
jobs:
deploy:
runs-on: ubuntu-22.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.119.0'
extended: true
- name: Build
env:
HUGO_ENV: production
run: hugo --minify -b $URL_DEVELOPMENT/$GITHUB_REF_NAME --destination branch/$GITHUB_REF_NAME
- name: Deploy
uses: appleboy/scp-action@master
with:
host: ${{ vars.IP_DEVELOPMENT }}
username: ${{ secrets.SSH_USERNAME_DEVELOPMENT }}
key: ${{ secrets.SSH_KEY_DEVELOPMENT }}
source: "branch/${{ github.ref.name }}"
target: ${{ vars.WEBROOT_DEVELOPMENT}}
strip_components: 1