From c58faad901b3b332fe623b6f8c65a1b101bdd1f2 Mon Sep 17 00:00:00 2001 From: Radius CI Bot Date: Thu, 28 Mar 2024 21:11:54 +0000 Subject: [PATCH 1/2] Update docs for v0.32.0 --- docs/config.toml | 8 ++++---- docs/layouts/partials/hooks/body-end.html | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/config.toml b/docs/config.toml index 3d641afa6..975da9ba5 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -1,4 +1,4 @@ -baseURL = "https://edge.docs.radapp.io/" +baseURL = "https://docs.radapp.io/" languageCode = "en-us" title = "Radius Docs" theme = "docsy" @@ -67,9 +67,9 @@ tag = "tags" [params] copyright = "Radius" -version = "edge" +version = "v0.32" tag_version = "latest" -chart_version = "0.26.0" +chart_version = "0.32.0" # Algolia Search algolia_docsearch = true @@ -77,7 +77,7 @@ algolia_docsearch = true # GitHub Information github_repo = "https://github.com/radius-project/docs" github_subdir = "docs" -github_branch = "edge" +github_branch = "v0.32" github_project_repo = "https://github.com/radius-project/radius" # Versioning diff --git a/docs/layouts/partials/hooks/body-end.html b/docs/layouts/partials/hooks/body-end.html index 3f4109e18..f640ff308 100644 --- a/docs/layouts/partials/hooks/body-end.html +++ b/docs/layouts/partials/hooks/body-end.html @@ -5,7 +5,7 @@ container: '#docsearch', appId: 'ED67NSVSZS', apiKey: '21e2920c3a9c29b98cbc382694413f29', - indexName: 'radapp-dev-edge', + indexName: 'radapp-dev', }); {{ end }} From c34b012caa18b34121d61c14e0dc51575ff0423e Mon Sep 17 00:00:00 2001 From: Aaron Crawfis Date: Thu, 28 Mar 2024 16:15:15 -0700 Subject: [PATCH 2/2] Update environment logic (#1097) Signed-off-by: Aaron Crawfis --- .github/workflows/website.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/website.yaml b/.github/workflows/website.yaml index e44841216..befc329d2 100644 --- a/.github/workflows/website.yaml +++ b/.github/workflows/website.yaml @@ -119,8 +119,8 @@ jobs: needs: ['build'] runs-on: ubuntu-latest environment: - # If a PR into edge, use 'edge'. If a PR into anywhere else, use 'latest'. If a push, use the branch name. - name: ${{ github.event_name == 'pull_request' && (github.base_ref == 'edge' && 'edge' || 'latest') || github.ref_name }} + # If a PR or push into edge, use 'edge'. If a PR or push into anywhere else, use 'latest'. + name: ${{ github.event_name == 'pull_request' && (github.base_ref == 'edge' && 'edge' || 'latest') || (github.ref_name == 'edge' && 'edge' || 'latest') }} # If a push to edge, use the edge URL. If a push to anywhere else, use the latest URL. If a PR, blank. url: ${{ github.event_name == 'pull_request' && '' || (github.ref_name == 'edge' && 'https://edge.docs.radapp.io' || 'https://docs.radapp.io') }} steps: