-
-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (42 loc) · 1.01 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
45
name: CI
on:
push:
pull_request:
branches:
- main
jobs:
api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.4
- name: Set up Haxelib dependencies
run: |
haxelib install dox --quiet
haxelib install hxargs --quiet
haxelib dev snake-server ${{ github.workspace }}
- name: Build API reference
working-directory: scripts
run: haxe docs.hxml
- uses: actions/upload-artifact@v4
with:
name: snake-server-docs
path: bin/api/
if-no-files-found: error
haxelib:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/upload-artifact@v4
with:
name: snake-server-haxelib
path: |
src/
haxelib.json
build.hxml
README.md
LICENSE
CHANGELOG.md
if-no-files-found: error