feat(ci): Deploy built site
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Ashhhleyyy 2022-07-05 10:45:31 +01:00
parent 01128d6da7
commit 40aa200cbb
Signed by: ash
GPG key ID: 83B789081A0878FB

View file

@ -14,6 +14,15 @@ steps:
- pnpm install --frozen-lockfile
- pnpm build
- pnpm format:check
- 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
trigger:
event: [push]