mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
Merge pull request #531 from revant/fix-b64decode
ci: fix base64 decode of env variable
This commit is contained in:
commit
4c79d6d7c6
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user