esp-volumeknob/.drone.yml

30 lines
883 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:
2022-06-07 19:26:44 +00:00
- "sed -i data/homie/config.json \"s/WIFISSID/${iotssid}/\""
- "sed -i data/homie/config.json \"s/WIFIPASS/${iotpwd}/\""
- "sed -i data/homie/config.json \"s/HOSTNAME/${hostname}/g\""
- "sed -i data/homie/config.json \"s/HOSTNAME/${hostname}/g\""
- "sed -i platformio.ini \"s/HOSTNAME/${hostname}/g\""
2022-06-07 18:14:58 +00:00
- "pip install -U platformio"
- "platformio run --environment esp8266"
2022-06-07 19:10:14 +00:00
- "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