-
-
Notifications
You must be signed in to change notification settings - Fork 195
50 lines (38 loc) · 1.15 KB
/
docs.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
name: Documentation
on:
push:
tags:
- '*'
branches:
- main
- docs
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@2.28.0
with:
php-version: 8.1
extensions: mbstring, dom, intl, iconv
- name: Install Dependencies
run: composer install --prefer-dist --no-progress --no-suggest --dev
- name: Install Daux
run: composer require daux/daux.io:^0.22.0 --prefer-dist --no-progress --no-suggest --dev
- name: Create Build Directory
run: mkdir -p build/daux
- name: Generate Documentation
run: vendor/bin/daux generate -d build/daux
- name: Deploy Documentation Website
uses: AEnterprise/rsync-deploy@v1.0.2
env:
DEPLOY_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
ARGS: "-e -c -r --delete"
SERVER_PORT: 22
FOLDER: "./build/daux/"
SERVER_IP: ${{ secrets.DOCS_REMOTE_HOST }}
USERNAME: ${{ secrets.DOCS_REMOTE_USER }}
SERVER_DESTINATION: ${{ secrets.DOCS_REMOTE_TARGET_PATH }}