Merge pull request #531 from revant/fix-b64decode

ci: fix base64 decode of env variable
This commit is contained in:
Revant Nandgaonkar
2021-10-29 22:48:56 +05:30
committed by GitHub

View File

@@ -182,7 +182,7 @@ jobs:
if: needs.resolve-matrix.outputs.build-target == 'stable'
run: |
export GIT_SSH_COMMAND="ssh -i ${PWD}/deploy_key"
echo -n $HELM_DEPLOY_KEY | base64 -d > deploy_key
echo -n $HELM_DEPLOY_KEY | base64 -di > deploy_key
chmod 400 deploy_key;
ssh-keyscan github.com >> $HOME/.ssh/known_hosts 2>/dev/null;
pip install --upgrade pip