From 61d928036847e3f43f749cbd559af4dc52cf29ad Mon Sep 17 00:00:00 2001 From: Katrina Prosise Date: Mon, 25 May 2026 04:28:50 -0400 Subject: [PATCH] Add redirect file File is used to auto redirect users from `https://docs.foundries.io` to `https://docs.foundries.io/latest` Ran `actionlint`, no errors detected. This commit applies to FFTK-4787 Signed-off-by: Katrina Prosise --- .github/workflows/publish-main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/publish-main.yml b/.github/workflows/publish-main.yml index 522c3269..93f0da65 100644 --- a/.github/workflows/publish-main.yml +++ b/.github/workflows/publish-main.yml @@ -59,4 +59,19 @@ jobs: export LATEST_TAG="$(git tag --sort=-committerdate | head -n 1)" if [[ $TAG == $LATEST_TAG ]]; then gsutil -m rsync -d -r gs://docs.foundries.io/${VERSION} gs://docs.foundries.io/latest + cat >/tmp/index.html << EOF + + + + + + + +

If you are not redirected, click here.

+ + + + EOF + gsutil cp /tmp/index.html gs://docs.foundries.io/index.html + fi