We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c9fa86 commit 0f7d142Copy full SHA for 0f7d142
.github/workflows/release.yml
@@ -62,7 +62,8 @@ jobs:
62
VERSION: ${{ github.ref_name }}
63
GITHUB_TOKEN: ${{ secrets.ZEE_RELEASE_TOKEN }}
64
run: |
65
- universal=$(find dist -name "zee_all" -type d)/zee
+ 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; }
67
chmod +x "$universal"
68
packaging/mkdmg.sh "$universal" "$VERSION" "Zee-${VERSION}.dmg"
69
shasum -a 256 "Zee-${VERSION}.dmg" >> dist/checksums.txt
0 commit comments