-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
emp Fix: Redirect to mirror dev website
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Manual GH-Pages Deployment | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
confirm: | ||
description: 'Type YES to deploy' | ||
required: true | ||
default: 'NO' | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.inputs.confirm == 'YES' }} | ||
steps: | ||
- name: Checkout gh-pages branch | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: gh-pages | ||
|
||
- name: Run Deployment Script | ||
run: | | ||
echo "Deploying gh-pages branch..." | ||
# Add your deployment commands here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE HTML> | ||
<html lang="en-US"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="refresh" content="1;url=https://whats2000.github.io/selector_helper/"> | ||
<script type="text/javascript"> | ||
window.location.href = "https://whats2000.github.io/selector_helper/" | ||
</script> | ||
<title>Page Redirection to mirror site</title> | ||
</head> | ||
<body> | ||
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. --> | ||
<h1>The page is temporarily unavailable.</h1> | ||
<p> | ||
Please go to the mirror site. | ||
If you are not redirected automatically, | ||
follow the <a href='https://whats2000.github.io/selector_helper/'>link</a> | ||
</p> | ||
</body> | ||
</html> |