diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml index 8f981c51d..818b87ec8 100644 --- a/.github/workflows/learn-github-actions.yml +++ b/.github/workflows/learn-github-actions.yml @@ -8,10 +8,24 @@ jobs: with: haxe-version: 4.2.4 - uses: actions/checkout@v2 - - run: | + - name: Installing Haxe Stuff + run: | haxe -version haxelib install openfl --quiet haxelib install lime --quiet haxelib install flixel --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 + - 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 +