Skip to content

Commit 56fa763

Browse files
authored
Add redirect for radapp.dev (radius-project#895)
Signed-off-by: Aaron Crawfis <[email protected]>
1 parent e98d0b1 commit 56fa763

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

.github/workflows/redirect.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Radius Redirect
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- edge
8+
- v*.*
9+
paths:
10+
- 'redirect/**'
11+
- '.github/workflows/redirect.yml'
12+
pull_request:
13+
branches:
14+
- edge
15+
- v*.*
16+
paths:
17+
- 'redirect/**'
18+
- '.github/workflows/redirect.yml'
19+
20+
jobs:
21+
deploy-website:
22+
name: Deploy Redirect Website
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout repo
26+
uses: actions/checkout@v4
27+
with:
28+
submodules: false
29+
- name: Deploy staging site
30+
uses: Azure/static-web-apps-deploy@v1
31+
with:
32+
azure_static_web_apps_api_token: ${{ secrets.SWA_REDIRECT_TOKEN }}
33+
action: "upload"
34+
app_location: "redirect/src"
35+
skip_api_build: true
36+
skip_app_build: true
37+
38+
close_pr_site:
39+
name: Close PR Staging Site
40+
if: github.event_name == 'pull_request' && github.event.action == 'closed'
41+
runs-on: ubuntu-latest
42+
steps:
43+
- name: Close Pull Request
44+
id: closepullrequest
45+
uses: Azure/static-web-apps-deploy@v1
46+
with:
47+
azure_static_web_apps_api_token: ${{ secrets.SWA_REDIRECT_TOKEN }}
48+
action: "close"

redirect/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Redirect Page
2+
3+
Our current domain, `radapp.io`, is the homepage for Radius. We previously operated on `radapp.dev` and may still have some remaining links to that domain. This directory contains a redirect page that we host on `radapp.dev` to redirect to `radapp.io`.

redirect/src/index.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Redirecting to https://radapp.io</title>
5+
<meta http-equiv="refresh" content="0; URL=https://radapp.io">
6+
</head>
7+
<body>
8+
<p>Please wait while you are redirected to https://radapp.io</p>
9+
</body>
10+
</html>

0 commit comments

Comments
 (0)