1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 17:18:55 +00:00
Funkin/.github/actions/setup-haxeshit/action.yml

31 lines
828 B
YAML
Raw Normal View History

name: setup-haxeshit
2023-02-22 19:39:41 +00:00
description: "sets up haxe shit, using HMM!"
runs:
using: "composite"
steps:
- uses: funkincrew/ci-haxe@v2
2023-10-06 14:52:28 +00:00
with:
haxe-version: 4.3.1
- name: Config haxelib
run: |
haxelib config
shell: bash
- name: Installing Haxe lol
run: |
haxe -version
2023-11-04 16:36:09 +00:00
haxelib git haxelib https://github.com/HaxeFoundation/haxelib.git master
2023-10-06 14:52:28 +00:00
haxelib version
haxelib --global install hmm
shell: bash
- name: dependency install cache
id: cache-hmm
uses: actions/cache@v3
with:
path: .haxelib
key: ${{ runner.os }}-hmm-${{ hashFiles('**/hmm.json') }}
- if: ${{ steps.cache-hmm.outputs.cache-hit != 'true' }}
name: hmm install
run: |
haxelib --global run hmm install
shell: bash