Skip to content

Commit

Permalink
Merge branch 'v0.32' into re/interop
Browse files Browse the repository at this point in the history
  • Loading branch information
Reshrahim authored Apr 5, 2024
2 parents 5cbea9a + c34b012 commit cb9e529
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions docs/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
baseURL = "https://edge.docs.radapp.io/"
baseURL = "https://docs.radapp.io/"
languageCode = "en-us"
title = "Radius Docs"
theme = "docsy"
Expand Down Expand Up @@ -67,17 +67,17 @@ 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

# 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
Expand Down
2 changes: 1 addition & 1 deletion docs/layouts/partials/hooks/body-end.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
container: '#docsearch',
appId: 'ED67NSVSZS',
apiKey: '21e2920c3a9c29b98cbc382694413f29',
indexName: 'radapp-dev-edge',
indexName: 'radapp-dev',
});
</script>
{{ end }}
Expand Down

0 comments on commit cb9e529

Please sign in to comment.