Going back to alpine for speedyness

This commit is contained in:
Roger Gonzalez 2023-01-02 16:51:28 -03:00
parent 247c60866e
commit a0fbd8efba
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6

View File

@ -1,9 +1,9 @@
image: debian:latest image: alpine:latest
deploy: deploy:
stage: deploy stage: deploy
before_script: before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' - 'command -v ssh-agent >/dev/null || ( apk add --update openssh )'
- eval $(ssh-agent -s) - eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh - mkdir -p ~/.ssh