software/.drone.yml

22 lines
491 B
YAML
Raw Permalink Normal View History

2021-12-22 12:21:09 +01:00
---
kind: pipeline
type: docker
name: default
steps:
2021-12-22 12:23:21 +01:00
- name: build
image: python:3.6
commands:
- "pip install -U platformio"
2021-12-22 12:25:06 +01:00
#- "cp ampel-firmware/config.public.h ampel-firmware/config.h"
2021-12-22 12:23:21 +01:00
- "platformio run --environment esp8266"
- cp .pio/build/esp8266/firmware.bin esp8266.bin
2021-12-22 12:21:09 +01:00
2021-12-22 12:23:21 +01:00
- name: release
image: plugins/gitea-release
settings:
2022-02-07 18:27:27 +01:00
base_url: https://git.lipovcan.cz
api_key: 1fc5d23e7f697be064039a594c1aace0f5a502a6
2021-12-22 12:40:46 +01:00
files: ./*.bin
2021-12-22 12:23:21 +01:00
when:
event: tag