mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
moved caching so html5 can also cache haxelibs
This commit is contained in:
parent
a7aafa9e3e
commit
0b42b6e305
2 changed files with 8 additions and 8 deletions
8
.github/actions/setup-haxeshit/action.yml
vendored
8
.github/actions/setup-haxeshit/action.yml
vendored
|
@ -10,6 +10,14 @@ runs:
|
|||
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
|
||||
|
|
8
.github/workflows/build-shit.yml
vendored
8
.github/workflows/build-shit.yml
vendored
|
@ -44,14 +44,6 @@ jobs:
|
|||
actions: write
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Restore/create existing haxelib cache for faster downloads
|
||||
uses: actions/cache@v3
|
||||
id: cache-haxelib-windows
|
||||
with:
|
||||
# wha?
|
||||
key: cache-haxelib-windows-${{ hashFiles('**/hmm.json')}}
|
||||
path: |
|
||||
.haxelib/
|
||||
- uses: ./.github/actions/setup-haxeshit
|
||||
- name: Build game
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue