Skip to content

Commit

Permalink
feat: deploy redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
bojanrajh committed Dec 13, 2023
1 parent ec81b75 commit 9bb93f4
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Docs

on: push

jobs:
create_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4

- name: Deploy redirect
if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@4.5.0
with:
branch: gh-pages
folder: redirect
clean: true
15 changes: 15 additions & 0 deletions redirect/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="Refresh" content="0; url='https://developer.shopware.com/resources/meteor-icon-kit/'"/>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meteor icon kit</title>
</head>
<body>
<h1>Redirecting....</h1>
<p>
To open the Meteor icon kit, please follow <a href="https://developer.shopware.com/resources/meteor-icon-kit/">this link</a>!
</p>
</body>
</html>

0 comments on commit 9bb93f4

Please sign in to comment.