1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-10-27 18:05:09 +00:00
Funkin/.github/workflows/learn-github-actions.yml

32 lines
987 B
YAML
Raw Normal View History

2022-02-18 21:28:13 +00:00
name: learn-github-actions
on: [push]
jobs:
check-bats-version:
runs-on: ubuntu-latest
steps:
- uses: krdlab/setup-haxe@v1.1.6
with:
haxe-version: 4.2.4
2022-02-18 21:31:08 +00:00
- uses: actions/checkout@v2
2022-02-18 22:16:29 +00:00
- name: Installing Haxe Stuff
run: |
2022-02-18 21:49:51 +00:00
haxe -version
haxelib install openfl --quiet
haxelib install lime --quiet
haxelib install flixel --quiet
haxelib install flixel-addons --quiet
2022-02-18 22:16:29 +00:00
haxelib install hscript --quiet
haxelib install flixel-ui --quiet
haxelib install firetongue --quiet
haxelib git polymod https://github.com/larsiusprime/polymod develop --quiet
haxelib run lime setup linux
2022-02-18 22:16:29 +00:00
- name: Build game?
run: |
haxelib run lime build linux -debug -clean
ls
- uses: actions/upload-artifact@v1
with:
name: funkinSecret-${{ runner.os }}-${{ github.sha }}
path: export/debug/linux/bin