Updated .drone.yml to include oauth url
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dreaded_X 2022-11-22 04:07:20 +01:00
parent 6f5b3d13f7
commit 780f633c90
Signed by: Dreaded_X
GPG Key ID: 76BDEC4E165D8AD9

View File

@ -23,6 +23,8 @@ steps:
from_secret: HUE_TOKEN
NTFY_TOPIC:
from_secret: NTFY_TOPIC
GOOGLE_OAUTH_URL:
from_secret: GOOGLE_OAUTH_URL
GOOGLE_CREDENTIALS:
from_secret: GOOGLE_CREDENTIALS
commands:
@ -30,7 +32,7 @@ steps:
- docker rm automation || true
- docker create -e MQTT_PASSWORD=$MQTT_PASSWORD -e HUE_TOKEN=$HUE_TOKEN -e NTFY_TOPIC=$NTFY_TOPIC -e GOOGLE_CREDENTIALS=$GOOGLE_CREDENTIALS --network mqtt --name automation automation
- docker create -e MQTT_PASSWORD=$MQTT_PASSWORD -e HUE_TOKEN=$HUE_TOKEN -e NTFY_TOPIC=$NTFY_TOPIC -e GOOGLE_OAUTH_URL=$GOOGLE_OAUTH_URL -e GOOGLE_CREDENTIALS=$GOOGLE_CREDENTIALS --network mqtt --name automation automation
- docker network connect mqtt automation
- docker network connect web automation
- docker start automation