Skip to content

Commit

Permalink
do these things not work across jobs? And don't error out if unset? H…
Browse files Browse the repository at this point in the history
…ow unamusing
  • Loading branch information
Alcaro committed Jan 28, 2025
1 parent 58ece2f commit b4a265b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-optimized.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ jobs:
with:
name: linux-x64-gui.zip
path: ./flips
- name: Find Flips version
id: flips_version
run: echo version=$(git rev-list --count master) >> $GITHUB_OUTPUT

windows:
runs-on: windows-latest
Expand Down Expand Up @@ -67,10 +64,16 @@ jobs:
needs: [linux, windows, macos]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: tree:0
- name: Download binaries
uses: actions/download-artifact@v4
with:
path: builds/
- name: Find Flips version
id: flips_version
run: echo version=$(git rev-list --count master) >> $GITHUB_OUTPUT
- name: Create zips
run: |
mv builds/linux-x64-gui.zip/flips flips
Expand Down

0 comments on commit b4a265b

Please sign in to comment.