From 4f60c55f87a763c5b8f36f722839cfb0a10f4236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Papp?= Date: Tue, 5 Nov 2024 01:47:14 +0000 Subject: [PATCH] Add TubeDepartureBoardsStationStatusIncidents to Feed so cron can run (#301) --- docs/release.md | 4 ++-- .../kotlin/net/twisterrob/travel/domain/london/status/Feed.kt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/release.md b/docs/release.md index 5b306e5c..0046129c 100644 --- a/docs/release.md +++ b/docs/release.md @@ -3,10 +3,10 @@ 0. Check [live][live] version is operational. 1. Ensure latest `main` in git clone. 1. Change `testDeployment` to `false` in `web/status-history/build.gradle.kts`. -1. `gradlew :web:status-history:appengineDeploy` +1. `gradlew :web:status-history:appengineDeploy :web:status-history:appengineDeployCron` 1. Verify new version is created in [Google Cloud Console][versions]. 1. Check [live][live] version is operational. -1. `git tag -f live` on `main` and `git push -f live`. +1. `git tag -f live` on `main` and `git push origin -f live`. 1. Clean up old versions in [Google Cloud Console][versions]. [live]: https://twisterrob-london.appspot.com/ diff --git a/domain/status/src/commonMain/kotlin/net/twisterrob/travel/domain/london/status/Feed.kt b/domain/status/src/commonMain/kotlin/net/twisterrob/travel/domain/london/status/Feed.kt index 907fbb62..08ef7bc7 100644 --- a/domain/status/src/commonMain/kotlin/net/twisterrob/travel/domain/london/status/Feed.kt +++ b/domain/status/src/commonMain/kotlin/net/twisterrob/travel/domain/london/status/Feed.kt @@ -3,4 +3,5 @@ package net.twisterrob.travel.domain.london.status enum class Feed { TubeDepartureBoardsLineStatus, TubeDepartureBoardsLineStatusIncidents, + TubeDepartureBoardsStationStatusIncidents, }