Skip to content

Commit bf8334f

Browse files
Fix Sparkle public key extraction
- Remove -p flag from public key extraction command - -p and -x flags cannot be used together - Use only -x flag to extract public key from private key - Fix 'option cannot be provided together' error in key extraction - Ensure proper Sparkle key generation workflow in CI/CD pipeline
1 parent 6f86910 commit bf8334f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
echo "✅ Private key generated successfully"
218218
219219
# Extract public key from private key
220-
./bin/generate_keys -x keys/ed25519_private_key.pem -p > keys/ed25519_public_key.pem
220+
./bin/generate_keys -x keys/ed25519_private_key.pem > keys/ed25519_public_key.pem
221221
222222
PUBLIC_KEY=$(grep -v "BEGIN\|END" keys/ed25519_public_key.pem | tr -d '\n')
223223
echo "Public key: $PUBLIC_KEY"

0 commit comments

Comments
 (0)