drone-configs/fluffychat.yml
2021-08-14 21:10:02 +02:00

20 lines
211 B
YAML

---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
- name: build
image: archlinux:base-devel
commands:
- whoami
- pacman -Sy
- pacman -S flutter
- ls -al
...