Skip to content

Commit 3b8175b

Browse files
authored
Revert "Deploy website - based on b05a4ba"
1 parent afd8deb commit 3b8175b

File tree

292 files changed

+21405
-7355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

292 files changed

+21405
-7355
lines changed

.github/workflows/deploy.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: deploy-docusaurus
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
13+
- name: Check out repo
14+
uses: actions/checkout@v4
15+
with:
16+
path: 'docusaurus'
17+
fetch-depth: 0
18+
ref: ${{github.event.pull_request.head.ref}}
19+
repository: ${{github.event.pull_request.head.repo.full_name}}
20+
# Node is required for npm
21+
- name: Set up Node
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: 19
25+
# Install and build the Docusaurus website
26+
- name: Install & Build Docusaurus
27+
run: |
28+
npm install --save @docusaurus/plugin-pwa
29+
npm install --save @docusaurus/plugin-client-redirects
30+
npm install --save docusaurus-lunr-search
31+
npm install --save prism-react-renderer
32+
npm install
33+
npm run build
34+
- name: Deploy to GitHub Pages
35+
if: success()
36+
uses: crazy-max/ghaction-github-pages@v4
37+
with:
38+
target_branch: gh-pages
39+
build_dir: /
40+
env:
41+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
.DS_Store
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
npm-debug.log*
19+
yarn-debug.log*
20+
yarn-error.log*

404.html

Lines changed: 0 additions & 26 deletions
This file was deleted.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs.fshost.me

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# FSHOST Docs Repo
2+
Welcome to the official [FSHOST Docs](https://docs.fshost.me/) Repo. 👋
3+
4+
## Reporting Bugs & Incorrect Information
5+
Have you found missing or incorrect information across our documentation that you would like to report?
6+
7+
##
8+
9+
<i>Copyright © FSHOST.me. All rights reserved.</i>

assets/css/styles.2e411c1d.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)