mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-09 00:04:42 +00:00
build and upload maaaaaybe???
This commit is contained in:
parent
6760232b80
commit
dcc53b4625
16
.github/workflows/learn-github-actions.yml
vendored
16
.github/workflows/learn-github-actions.yml
vendored
|
@ -8,10 +8,24 @@ jobs:
|
||||||
with:
|
with:
|
||||||
haxe-version: 4.2.4
|
haxe-version: 4.2.4
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: |
|
- name: Installing Haxe Stuff
|
||||||
|
run: |
|
||||||
haxe -version
|
haxe -version
|
||||||
haxelib install openfl --quiet
|
haxelib install openfl --quiet
|
||||||
haxelib install lime --quiet
|
haxelib install lime --quiet
|
||||||
haxelib install flixel --quiet
|
haxelib install flixel --quiet
|
||||||
haxelib install flixel-addons --quiet
|
haxelib install flixel-addons --quiet
|
||||||
|
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
|
haxelib run lime setup linux
|
||||||
|
- 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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue