mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
29 lines
857 B
YAML
29 lines
857 B
YAML
name: setup-haxeshit
|
|
description: "sets up haxe shit, using HMM!"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: krdlab/setup-haxe@v1.5.1
|
|
with:
|
|
haxe-version: 4.3.1
|
|
- name: Config haxelib
|
|
run: |
|
|
haxelib config
|
|
shell: bash
|
|
- name: Restore/create existing haxelib cache for faster downloads
|
|
uses: actions/cache@v3
|
|
id: cache-haxelib-windows
|
|
with:
|
|
# wha?
|
|
key: cache-haxelib-${{ runner.os }}-${{ hashFiles('**/hmm.json')}}
|
|
path: |
|
|
.haxelib/
|
|
- name: Installing Haxe lol
|
|
run: |
|
|
haxe -version
|
|
haxelib git haxelib https://github.com/HaxeFoundation/haxelib.git development
|
|
haxelib version
|
|
haxelib --global install hmm
|
|
haxelib --global run hmm install --quiet
|
|
shell: bash
|