Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

Commit b4a265b

Browse files
committed
do these things not work across jobs? And don't error out if unset? How unamusing
1 parent 58ece2f commit b4a265b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build-optimized.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ jobs:
2626
with:
2727
name: linux-x64-gui.zip
2828
path: ./flips
29-
- name: Find Flips version
30-
id: flips_version
31-
run: echo version=$(git rev-list --count master) >> $GITHUB_OUTPUT
3229

3330
windows:
3431
runs-on: windows-latest
@@ -67,10 +64,16 @@ jobs:
6764
needs: [linux, windows, macos]
6865
steps:
6966
- uses: actions/checkout@v4
67+
with:
68+
fetch-depth: 0
69+
filter: tree:0
7070
- name: Download binaries
7171
uses: actions/download-artifact@v4
7272
with:
7373
path: builds/
74+
- name: Find Flips version
75+
id: flips_version
76+
run: echo version=$(git rev-list --count master) >> $GITHUB_OUTPUT
7477
- name: Create zips
7578
run: |
7679
mv builds/linux-x64-gui.zip/flips flips

0 commit comments

Comments
 (0)