Skip to content

Commit cd7c9f1

Browse files
Fix Commit Number in Main Menu (#950)
* Update checkout action to fetch full history * Update linux.yml * Update macos.yml * Update release.yml * Update windows.yml
1 parent e458e86 commit cd7c9f1

5 files changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/linux-selfhosted.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: Pulling the new commit
1414
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
1517
- name: Setting up Haxe
1618
uses: krdlab/setup-haxe@v2
1719
with:

.github/workflows/linux.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: Pulling the new commit
1414
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
1517
- name: Setting up Haxe
1618
uses: krdlab/setup-haxe@v2
1719
with:
@@ -144,4 +146,4 @@ jobs:
144146
path: |
145147
.haxelib/
146148
export/debug/linux/haxe/
147-
export/debug/linux/obj/
149+
export/debug/linux/obj/

.github/workflows/macos.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: Pulling the new commit
1414
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
1517
- name: Setting up Haxe
1618
uses: krdlab/setup-haxe@v2
1719
with:
@@ -138,4 +140,4 @@ jobs:
138140
path: |
139141
.haxelib/
140142
export/debug/macos/haxe/
141-
export/debug/macos/obj/
143+
export/debug/macos/obj/

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v4
25+
with:
26+
fetch-depth: 0
2527

2628
- name: Download Windows Full Build
2729
uses: dawidd6/action-download-artifact@v6

.github/workflows/windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212
steps:
1313
- name: Pulling the new commit
1414
uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
1517
- name: Setting up Haxe
1618
uses: krdlab/setup-haxe@v2
1719
with:
@@ -134,4 +136,4 @@ jobs:
134136
path: |
135137
.haxelib/
136138
export/debug/windows/haxe/
137-
export/debug/windows/obj/
139+
export/debug/windows/obj/

0 commit comments

Comments
 (0)