kind: pipeline type: docker name: Build platform: os: linux arch: arm64 steps: - name: Install dependencies image: node-pnpm:16-alpine commands: - pnpm install --frozen-lockfile - name: Check formatting image: node-pnpm:16-alpine commands: - pnpm format:check - name: Build site image: node-pnpm:16-alpine commands: - pnpm build - name: Deploy site image: alpine commands: - apk add curl ca-certificates zip - cd dist && zip -r ../deploy.zip * && cd .. - 'curl --fail -F file=@deploy.zip -H "Authorization: $DEPLOY_TOKEN" https://projects.ashhhleyyy.dev/chss' environment: DEPLOY_TOKEN: from_secret: deploy_token trigger: event: [push] branch: [main]