feat(ci): add drone CI
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Ashhhleyyy 2022-12-20 14:13:19 +00:00
parent 286ca9cd8f
commit 9acd642279
Signed by: ash
GPG key ID: 83B789081A0878FB

26
.drone.yml Normal file
View file

@ -0,0 +1,26 @@
kind: pipeline
type: docker
name: Build
platform:
os: linux
arch: arm64
steps:
- name: Build site
image: nixos/nix
commands:
- nix --experimental-features 'nix-command flakes' build
- name: Deploy site
image: alpine
commands:
- apk add curl ca-certificates zip
- cd dist && zip -r ../deploy.zip * && cd ..
- 'curl --fail --upload-file deploy.zip -H "Authorization: token $GITEA_TOKEN" https://git.ashhhleyyy.dev/api/packages/ash/generic/caaard/$DRONE_COMMIT_SHA/caaard.zip'
environment:
GITEA_TOKEN:
from_secret: GITEA_TOKEN
trigger:
event: [push]
branch: [main]