-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI/CD] Replaced TravisCI with GitHub Actions (#72)
* github-actions * updated docs
- Loading branch information
1 parent
81d8784
commit e570f4f
Showing
3 changed files
with
49 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
env: | ||
HEAPS_VER: master | ||
|
||
jobs: | ||
deploy-website: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Checkout Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
# we are using this version in order to build vscode-textmate | ||
- name: Setup Node | ||
uses: actions/setup-node@v1 | ||
|
||
- name: Setup Haxe | ||
uses: krdlab/setup-haxe@v1 | ||
with: | ||
haxe-version: 4.3.4 | ||
|
||
- name: Install | ||
# at some point all npm needs to be in package.json | ||
run: | | ||
npm install | ||
npm install -g uglify-js | ||
npm install -g [email protected] | ||
npm install -g [email protected] | ||
haxelib install all --always | ||
haxelib git heaps https://github.com/heapsio/heaps | ||
haxelib list | ||
- name: Script | ||
run: | | ||
haxe build-run-dox.hxml | ||
haxe build-samples.hxml | ||
haxe get-wiki.hxml | ||
haxe heaps.io.hxml | ||
- name: Deploy | ||
run: haxe deploy.hxml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters