fix: forgot to decode key
This commit is contained in:
parent
8c7eec7706
commit
8af2a3b50d
@ -36,10 +36,11 @@ release:
|
||||
- gulp --version # Verify Gulp is installed
|
||||
# Set up SSH agent and add private key for pushing to protected branch
|
||||
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
||||
- echo "$SSH_PRIVATE_KEY_ENCODED" | base64 --decode > ~/.ssh/id_rsa
|
||||
- chmod 600 ~/.ssh/id_rsa
|
||||
- eval $(ssh-agent -s)
|
||||
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
|
||||
- ssh-add ~/.ssh/id_rsa
|
||||
- mkdir -p ~/.ssh
|
||||
- chmod 700 ~/.ssh
|
||||
- ssh-keyscan gitlab.com >> ~/.ssh/known_hosts
|
||||
script:
|
||||
# Check if VERSION is provided
|
||||
|
Loading…
Reference in New Issue
Block a user