Skip to content

Commit defa23c

Browse files
committed
build: fix
1 parent a6901c4 commit defa23c

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

.github/workflows/beta.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,13 @@ jobs:
114114
115115
package_variant universal universal
116116
117-
mv "$RELEASE_DIR"/Micmute-*.zip "$GITHUB_WORKSPACE"/
117+
UNIVERSAL_ZIP="$RELEASE_DIR/Micmute-universal.zip"
118+
if [ ! -f "$UNIVERSAL_ZIP" ]; then
119+
echo "Universal zip not found at $UNIVERSAL_ZIP" >&2
120+
exit 1
121+
fi
122+
123+
mv "$UNIVERSAL_ZIP" "$GITHUB_WORKSPACE"/
118124
119125
- name: Upload artifact
120126
uses: actions/upload-artifact@v4

.github/workflows/stable.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,13 @@ jobs:
109109
110110
package_variant universal universal
111111
112-
mv "$RELEASE_DIR"/Micmute-*.zip "$GITHUB_WORKSPACE"/
112+
UNIVERSAL_ZIP="$RELEASE_DIR/Micmute-universal.zip"
113+
if [ ! -f "$UNIVERSAL_ZIP" ]; then
114+
echo "Universal zip not found at $UNIVERSAL_ZIP" >&2
115+
exit 1
116+
fi
117+
118+
mv "$UNIVERSAL_ZIP" "$GITHUB_WORKSPACE"/
113119
114120
- name: Upload artifact
115121
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)