Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
ci: testing: build: Try x509 keys instead of ssh authorized_keys for …
Browse files Browse the repository at this point in the history
…public-keys read_bytes

Asciinema: https://asciinema.org/a/627133
Signed-off-by: John Andersen <johnandersenpdx@gmail.com>
  • Loading branch information
pdxjohnny committed Dec 16, 2023
1 parent 8154cfb commit 6d634be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
import datetime
import pathlib
key = jwk.JWK.from_pem(pathlib.Path("private-key.pem"))
key = jwk.JWK.from_pem(pathlib.Path("private-key.pem").read_bytes())
rsa_public_key = jwk.JWK.from_json(key.export_public())
# Convert the JWK to a public key
Expand Down

0 comments on commit 6d634be

Please sign in to comment.