forgot about hxvlc #134
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: Build | |
on: [push] | |
jobs: | |
buildWindows: # windows action build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: 4.2.5 | |
- name: Set up Haxelib dependencies | |
run: haxe -cp cmd -D analyzer-optimize --run Main | |
# - name: Update submodules | |
# run: git submodule update --init --recursive | |
- name: Build project | |
run: | | |
haxelib run lime build windows | |
- name: Uploading artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: WindowsBuild | |
path: export/release/windows/bin |