jitsi-roomsv2/.drone.yml

35 lines
465 B
YAML

kind: pipeline
type: docker
name: Build backend
steps:
- name: Build backend
image: nixos/nix
commands:
- cd backend
- nix-channel --update
- nix-build
trigger:
trigger:
event:
- tag
---
kind: pipeline
type: docker
name: Build frontend
steps:
- name: Build frontend
image: yarn:apline
commands:
- cd frontend
- yarn install
- yarn build
trigger:
trigger:
event:
- tag
- push