deskcontrol/.drone.yml
Jens True 338c90fb8e
All checks were successful
continuous-integration/drone/push Build is passing
Moved gitea key into drone secret
2019-10-08 15:35:21 +02:00

26 lines
425 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: python:3
commands:
- pip install platformio
- pio run
- name: upload
image: python:3
commands:
- make otaupload
when:
event: tag
- name: release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_api_key
base_url: https://code.jcktrue.dk
files:
- .pio/build/nodemcu/firmware.bin
when:
event: tag