-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (32 loc) · 920 Bytes
/
pages.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
name: Github Pages
on: workflow_dispatch
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup Haxe
uses: krdlab/setup-haxe@master
with:
haxe-version: 4.3.4
- name: Installing Dependencies
run: sudo apt-get update && sudo apt-get install -y rsync libvlc-dev libvlccore-dev
- name: Installing Haxe Libraries
run: |
haxelib install hmm --quiet
haxelib run hmm install --quiet
haxelib install dox --quiet
- name: Creating Documentation Site
run: chmod +x docs/docs.sh && docs/docs.sh
- name: Deploying With Github Actions
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: pages