update info to be about 11ty instead of docpad #146
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: | |
branches: [master] | |
workflow_dispatch: | |
repository_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: lix-pm/setup-lix@master | |
- uses: HaxeFlixel/setup-flixel@master | |
with: | |
haxe-version: 4.3.2 | |
flixel-versions: release | |
target: flash | |
- run: npm install | |
working-directory: api/dox | |
- run: haxe --cwd api --run Make xml pages | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
publish_dir: ./api/dox/out | |
cname: api.haxeflixel.com |