kind: pipeline type: docker name: deploy steps: - name: build image: ghcr.io/getzola/zola:v0.17.2 entrypoint: ["/bin/zola"] command: ["build"] - name: deploy image: alpine:latest environment: HOST: from_secret: host USER: from_secret: user SSH_KEY: from_secret: ssh_key PATH: from_secret: path when: branch: - main commands: - apt-get update - apt-get add openssh rsync - eval $(ssh-agent -s) - mkdir -p ~/.ssh - echo "$RSYNC_KEY" > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa