Note for selfhosted backend upgrading from previous verions
We ar removing GITHUB_APP_PRIVATE_KEY and replacing it with GITHUB_APP_PRIVATE_KEY_BASE64 which is the base64 encoded value of the same. If you would like to convert your env variable you can use base64 utility in terminal:
# From PEM file
$ base64 -w0 gh-app-key.pem
# Setting environment variable and echoing (NOTE: Quotation marks around variable - "$myvar" - is important for preserving linebreak characters when echoing)
$ myvar='-----BEGIN RSA PRIVATE KEY-----
123ABC
-----END RSA PRIVATE KEY-----'
$ echo "$myvar" | base64 -w0
# setting
GITHUB_APP_PRIVATE_KEY_BASE64=LS0tLS1CRUdJTiBSU...
What's Changed
- implementation of aggregate status checks by @motatoes in #1150
- supporting reporting to bitbucket + jenkins as a ci system by @motatoes in #1132
- add base64 encoding for private key by @motatoes in #1188
- bugfix: erronous arn in aws oidc documentation by @haraldsk in #1212
- multiarch releases for cli by @motatoes in #1214
New Contributors
Full Changelog: v0.4.2...v0.4.3