chss/.drone.yml
Ashhhleyyy d58a84a7b1
All checks were successful
continuous-integration/drone/push Build is passing
fix(ci): Use custom docker image for building
2022-07-05 21:46:45 +01:00

34 lines
714 B
YAML

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]