i am trying to deploy google app engine.
my pipe is :
- pipe: atlassian/google-app-engine-deploy:0.6.0
variables:
KEY_FILE: ~/AhaAppEngine/deploy/alykadev01-9dce7be5d92c.key
PROJECT: 'xxxx'
The key file exists and when I do cat "${KEY_FILE}" | base64 -d it can decode the file. while the pipeline does something odd:
Status: Downloaded newer image for bitbucketpipelines/google-app-engine-deploy:0.6.0
INFO:
Setting up environment.
echo "${KEY_FILE}" | base64 -d >> /tmp/key-file.json
base64:
invalid input
I think the pipeline code is not correct. It should be:
cat "${KEY_FILE}" | base64 -d
right?
Pipelines is not reading a file for the KEY_FILE, but echoing out an environment variable. the KEY_FILE value should not be a file path (you shouldn't keep your secrets in version control where they could leak to other developers) but the base64 encoded contents of the key file. This can be set in the repository settings, or even on a per deployment basis.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.