chss/.drone.yml

30 lines
609 B
YAML
Raw Normal View History

2022-07-04 20:03:22 +00:00
kind: pipeline
type: docker
name: Build
2022-07-04 20:07:42 +00:00
platform:
os: linux
arch: arm64
2022-07-04 20:03:22 +00:00
steps:
- name: Build and check formatting
image: node:14-alpine
commands:
- yarn global add pnpm
- pnpm install --frozen-lockfile
- pnpm build
- pnpm format:check
2022-07-05 09:45:31 +00:00
- name: Deploy site
image: alpine
commands:
- apk add curl ca-certificates zip
- cd dist && zip -r ../deploy.zip * && cd ..
- 'curl -F file=@deploy.zip -H "Authorization: $DEPLOY_TOKEN" https://projects.ashhhleyyy.dev/chss'
environment:
DEPLOY_TOKEN:
from_secret: deploy_token
2022-07-04 20:03:22 +00:00
trigger:
event: [push]
branch: [main]