-
Notifications
You must be signed in to change notification settings - Fork 82
41 lines (37 loc) · 1.08 KB
/
build_and_deploy.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: Build and Deloy Documentation
on:
push:
branches: ["master", "dev", "maint-*"]
pull_request:
branches: ["master", "dev", "maint-*"]
permissions:
contents: read
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build-and-deploy-doc:
runs-on:
- self-hosted
- Linux
- doc-runner
steps:
- uses: actions/checkout@v4
- name: Build documentation
run: |
make env.conda
source ~/miniconda3/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
make doc
- name: Deploy documentation
run: |
if [[ -z "${{ github.event.number }}" ]];
then
BRANCH_NAME="${{ github.ref_name }}"
else
BRANCH_NAME="PR-${{ github.event.number }}"
fi
echo $BRANCH_NAME
mv site "${BRANCH_NAME}"
ls "${BRANCH_NAME}"
rsync -zav "${BRANCH_NAME}" aramislab:/srv/local/clinica/docs/public/