Skip to content

Commit 0f7d142

Browse files
committed
fix release
1 parent 7c9fa86 commit 0f7d142

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
VERSION: ${{ github.ref_name }}
6363
GITHUB_TOKEN: ${{ secrets.ZEE_RELEASE_TOKEN }}
6464
run: |
65-
universal=$(find dist -name "zee_all" -type d)/zee
65+
universal=$(find dist -path "*universal*" -name "zee" -type f | head -1)
66+
test -n "$universal" || { echo "universal binary not found"; find dist -type f; exit 1; }
6667
chmod +x "$universal"
6768
packaging/mkdmg.sh "$universal" "$VERSION" "Zee-${VERSION}.dmg"
6869
shasum -a 256 "Zee-${VERSION}.dmg" >> dist/checksums.txt

0 commit comments

Comments
 (0)