remove the deprecated health snippet #146
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, workflow_dispatch, repository_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt-get update | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '10.x' | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: "4.3.3" | |
- uses: HaxeFlixel/setup-flixel@v1 | |
with: | |
haxe-version: current | |
flixel-versions: dev | |
target: html5 | |
- name: Build Site | |
run: | | |
gem install bundler | |
bundle install --jobs=3 --retry=3 | |
bundle exec rake deploy | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
publish_dir: ./_site | |
force_orphan: true | |
cname: snippets.haxeflixel.com | |
if: github.ref == 'refs/heads/master' |