We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
good afternoon, @mlynch thx for #105 :) do we have some kind of easy way to decode a base64 string?
for example $GOOGLE_SERVICE_PLIST_RAW it's more convenient to store in base64, but you have to decode it.
$GOOGLE_SERVICE_PLIST_RAW
I suggest to do it:
from
base64
platforms: ios: targets: App: plist: - file: GoogleService-Info.plist xml: $GOOGLE_SERVICE_PLIST_RAW # add `from` attribute from: base64
nodejs:
const value = Buffer.from(process.env.GOOGLE_SERVICE_PLIST_RAW, 'base64').toString( 'ascii' )
browser:
const value = atob(process.env.GOOGLE_SERVICE_PLIST_RAW)
The text was updated successfully, but these errors were encountered:
also my current solution is:
# prebuid.sh GOOGLE_SERVICE_PLIST_RAW=$(echo $GOOGLE_SERVICE_PLIST_RAW | base64 -d) pnpm exec trapeze run trapeze-config.yml -y
Sorry, something went wrong.
No branches or pull requests
good afternoon, @mlynch thx for #105 :)
do we have some kind of easy way to decode a base64 string?
for example
$GOOGLE_SERVICE_PLIST_RAW
it's more convenient to store in base64, but you have to decode it.I suggest to do it:
from
key with enumbase64
.nodejs:
browser:
The text was updated successfully, but these errors were encountered: