Skip to content

Commit 945aea5

Browse files
committed
okay should i disable caching on the actions??
1 parent 9d14588 commit 945aea5

1 file changed

Lines changed: 8 additions & 23 deletions

File tree

.github/workflows/windows.yml

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Windows Build
22
on:
33
push:
44
workflow_dispatch:
5+
56
jobs:
67
build:
78
name: Windows Build
@@ -10,41 +11,25 @@ jobs:
1011
steps:
1112
- name: Retrieving latest commit.
1213
uses: actions/checkout@v4
14+
1315
- name: Setting up Haxe
1416
uses: krdlab/setup-haxe@v1
1517
with:
1618
haxe-version: latest
17-
- name: Restore existing build cache for faster compilation
18-
uses: actions/cache@v3
19-
with:
20-
key: cache-build-windows
21-
path: |
22-
.haxelib/
23-
export/windows/haxe/
24-
export/windows/obj/
25-
restore-keys: |
26-
cache-build-windows
27-
- name: Install latest HXCPP
28-
run: haxelib install hxcpp --always --quiet
2919

30-
- name: Installing / Updating libraries
20+
- name: Display current Haxe Version
21+
run: haxe -version
22+
23+
- name: Installing libraries
3124
run: |
3225
haxe -cp cli --run Lib
26+
3327
- name: Building the game
3428
run: |
3529
haxelib run lime build windows
30+
3631
- name: Uploading artifact
3732
uses: actions/upload-artifact@v4
3833
with:
3934
name: LineTapper
4035
path: export/windows/bin
41-
- name: Uploading new cache
42-
uses: actions/cache@v3
43-
with:
44-
key: cache-build-windows
45-
path: |
46-
.haxelib/
47-
export/windows/haxe/
48-
export/windows/obj/
49-
restore-keys: |
50-
cache-build-windows

0 commit comments

Comments
 (0)