-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI (Buildkite): for the signed pipeline test, use signature_file
instead of signature
#41706
Conversation
1daf4ba
to
d66aad1
Compare
…stead of `signature`
d66aad1
to
7136cec
Compare
@staticfloat Any idea what's going wrong here? The signature is exactly the same; I've just moved it from
|
Ah, looks like the Here's the code I used: import Base64
function base64_decode_signature_file(filename::AbstractString)
str = read(filename, String)
b = Base64.base64decode(str)
rm(filename; force = true)
open(filename, "w") do io
write(io, b)
end
return nothing
end And then you can run it with: base64_decode_signature_file(".buildkite/pipelines/main/misc/signed_pipeline_test.yml.signature") |
No description provided.