caaard/.drone.yml
Ashhhleyyy 9acd642279
Some checks failed
continuous-integration/drone/push Build is failing
feat(ci): add drone CI
2022-12-20 14:13:19 +00:00

26 lines
610 B
YAML

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]