-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (38 loc) · 1.39 KB
/
main.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
name: SimpleVM User Docs test
on:
schedule:
- cron: '0 12 * * *'
workflow_dispatch:
inputs:
mkdocs_branch:
required: true
description: "mkdocsWebhook branch to checkout"
default: "master"
pull_request:
jobs:
runner-job:
runs-on: ubuntu-latest
steps:
- name: Checkout simplevm-user-docs repository
uses: actions/checkout@v3
with:
path: simplevm-user-docs
- name: Checkout mkdocsWebhook repository
uses: actions/checkout@v3
with:
repository: deNBI/mkdocsWebhook
path: mkdocsWebhook
ref: ${{ github.event.inputs.mkdocs_branch }}
- name: Build mkdocsWebhook image
run: cd $GITHUB_WORKSPACE/mkdocsWebhook && docker build -t docs .
- name: Run Docker
run: cd $GITHUB_WORKSPACE/simplevm-user-docs && docker run -v "$(pwd):/srv_root/docs" -p "8000:8000" -e ENABLED_HTMLPROOFER=True -e SITE_URL=https://cloud.denbi.de/wiki/ --entrypoint="mkdocs" docs build -f /srv_root/docs/config.yml
- uses: Cadair/matrix-notify-action@main
name: Matrix Notification
if: ${{ failure() }}
with:
matrix_token: ${{ secrets.matrix_access_token }}
github_token: ${{ secrets.GITHUB_TOKEN }}
homeserver: 'https://matrix.org'
roomid: ${{ secrets.MATRIX_CRITICAL_ROOM }}
summarise_success: true