kind: pipeline type: docker name: build-and-deploy steps: - name: build image: klakegg/hugo:ext-alpine environment: HUGO_SECURITY_HTTP_URLS: none commands: - apk add --no-cache git py3-pygments - git submodule update --init --single-branch --depth=1 - hugo - name: deploy image: alpine/git:latest environment: SSH_KEY: from_secret: ssh_key commands: - mkdir ~/.ssh - echo "$${SSH_KEY}" > ~/.ssh/id_ed25519 - chmod 600 ~/.ssh/id_ed25519 - ssh -o "StrictHostKeyChecking no" cicd@cpx.servers.sapti.me "rm -rf /opt/apps/nginx/website/public/*" - scp -o "StrictHostKeyChecking no" -r ./public cicd@cpx.servers.sapti.me:/opt/apps/nginx/website when: branch: - main event: exclude: - pull_request