updated from 1.60.0 to 1.97.0 #47
Workflow file for this run
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, repository_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: krdlab/setup-haxe@v1.1.4 | |
- run: | | |
haxelib install hxnodejs | |
haxelib git dox https://github.com/HaxeFoundation/dox | |
haxelib dev vscode . | |
- run: haxe build.hxml | |
- run: haxe build.hxml | |
working-directory: example | |
- run: haxe doc.hxml | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
publish_dir: out | |
if: github.ref == 'refs/heads/master' |