forked from Leopotam/ecslite
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (41 loc) · 1.04 KB
/
onpush_master.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: Release Build
on:
push:
branches:
- master
- docsfx
workflow_dispatch:
jobs:
build_lib:
name: Build Library
uses: loopyd/ecs-saber/.github/workflows/build.yml@master
with:
build_docs: false
build_configuration: release
library_name: LeoEcsSaber
library_sdk_version: 3.1.x
src_branch: master
repo_org: loopyd
repo_project: ecs-saber
build_docs:
name: Build Documentation
uses: loopyd/ecs-saber/.github/workflows/build.yml@master
with:
build_docs: true
build_configuration: debug
library_name: LeoEcsSaber
src_branch: master
docsfx_branch: docsfx
repo_org: loopyd
repo_project: ecs-saber
deploy_docs:
name: Deploy Documentation
needs: build_docs
uses: loopyd/ecs-saber/.github/workflows/deploy.yml@master
with:
deploy_docs: true
library_name: LeoEcsSaber
src_branch: master
gh_pages_branch: gh-pages
github_email: "[email protected]"
github_username: "loopyd"