esp-volumeknob/.drone.yml

28 lines
751 B
YAML
Raw Normal View History

2022-06-07 18:14:58 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: build
2022-06-07 18:16:28 +00:00
image: python:3.10
2022-06-07 18:14:58 +00:00
commands:
- "pip install -U platformio"
- "platformio run --environment esp8266"
2022-06-07 19:10:14 +00:00
- "sed -i date/homie/config.json 's/WIFISSID/${iotssid}/'"
- "sed -i date/homie/config.json 's/WIFIPASS/${iotpwd}/'"
- "sed -i date/homie/config.json 's/HOSTNAME/${hostname}/g'"
- "platformio run --target upload --environment d1_mini"
- "platformio run --target uploadfs --environment d1_mini"
2022-06-07 18:14:58 +00:00
- name: release
image: plugins/gitea-release
settings:
2022-06-07 18:16:28 +00:00
base_url: https://gitea.ctdo.de
2022-06-07 18:14:58 +00:00
files: ./*.bin
2022-06-07 18:16:28 +00:00
upload_port:
from_secret: hostname
2022-06-07 19:10:14 +00:00
iotssid:
from_secret: iotssid
iotpwd:
from_secret: iotpwd
2022-06-07 18:14:58 +00:00
when:
event: tag