Skip to content

Commit dbbc953

Browse files
Fix Sparkle public key extraction to use -p flag
- Change from -x flag to -p flag for public key extraction - -p flag is for extracting public key from private key - -x flag was causing the extraction to fail - Fix 'Process completed with exit code 1' error in key extraction - Ensure proper Sparkle public key generation in CI/CD pipeline
1 parent bbdc8fd commit dbbc953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
219219
# Extract public key from private key
220220
echo "🔑 Extracting public key from private key..."
221-
./bin/generate_keys -x keys/ed25519_private_key.pem > keys/ed25519_public_key.pem
221+
./bin/generate_keys -p keys/ed25519_private_key.pem > keys/ed25519_public_key.pem
222222
223223
# Verify public key was created
224224
if [ ! -f "keys/ed25519_public_key.pem" ] || [ ! -s "keys/ed25519_public_key.pem" ]; then

0 commit comments

Comments
 (0)