File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments