CI #12
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
name: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
env: | |
HEAPS_VER: master | |
permissions: | |
contents: write | |
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 --quiet | |
haxelib git heaps https://github.com/heapsio/heaps $HEAPS_VER | |
haxelib list | |
- name: Script | |
run: | | |
haxe build-run-dox.hxml | |
haxe build-samples.hxml | |
haxe get-wiki.hxml | |
haxe heaps.io.hxml | |
- name: Deploy | |
if: github.ref == 'refs/heads/master' | |
run: haxe deploy.hxml | |
env: | |
GHP_EMAIL: "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | |
GHP_USERNAME: ${{ github.actor }} | |
GHP_CNAME: heaps.io | |
GHP_REMOTE: https://${{ github.actor }}:${{ github.token }}@github.com/${{ github.repository }}.git |