Skip to content

Commit d909598

Browse files
committed
make directory, not file
1 parent 1f63712 commit d909598

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-bins.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
echo "|||||||||||||||||||||||||||||||||||||||||||||"
9999
100100
# Create a temporary keychain
101-
EPHEMERAL_KEYCHAIN=`mktemp`
101+
EPHEMERAL_KEYCHAIN=`mktemp -d`
102102
103103
echo "Creating keychain..."
104104
security create-keychain -p "${MACOS_KEYCHAIN_PASSWORD}" $KEYCHAIN_NAME
@@ -148,7 +148,7 @@ jobs:
148148
codesign -vvv --deep --strict "$BINARY_PATH"
149149
150150
echo "> Zipping dist..."
151-
TMP_DIST=`mktemp`
151+
TMP_DIST=`mktemp -d`
152152
mkdir $TMP_DIST/dist
153153
cp "$BINARY_PATH" "$TMP_DIST/dist/"
154154
zip -r "$TMP_DIST/apollo-mcp-server-$VERSION.zip" "$TMP_DIST/dist"

0 commit comments

Comments
 (0)