-
-
Notifications
You must be signed in to change notification settings - Fork 88
38 lines (32 loc) · 939 Bytes
/
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
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
# we need full git history for article dates
fetch-depth: 0
- name: Setup Haxe
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.5
- name: Install
# at some point all npm needs to be in package.json
run: |
npm install
npm install -g [email protected]
npm install -g [email protected]
haxelib install CodeCookBook-neko.hxml --always --quiet
haxelib install highlighting.hxml --always --quiet
haxelib list
- name: Generate website
run: |
haxe CodeCookBook-neko.hxml
haxe highlighting.hxml
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./output