caaard/.drone.yml
Ashhhleyyy faa4dbbd3a
All checks were successful
continuous-integration/drone/push Build is passing
fix(ci): put the zip in the right place?
2022-12-20 18:03:47 +00:00

22 lines
679 B
YAML

kind: pipeline
type: docker
name: Build
platform:
os: linux
arch: arm64
steps:
- name: Build and deploy site
image: nixos/nix
commands:
- nix --experimental-features 'nix-command flakes' build
- cd result/ && nix --experimental-features 'nix-command flakes' run nixpkgs#zip -- -r $DRONE_WORKSPACE/deploy.zip * && cd ..
- 'nix --experimental-features "nix-command flakes" run nixpkgs#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]