Skip to content

Commit

Permalink
emp Fix: Redirect to mirror dev website
Browse files Browse the repository at this point in the history
  • Loading branch information
whats2000 committed Feb 12, 2025
1 parent 5cacefb commit 3178124
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/manually_deploy.yaml
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
20 changes: 20 additions & 0 deletions index.html
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>

0 comments on commit 3178124

Please sign in to comment.