Skip to content

Commit

Permalink
Init docusaurus (#35)
Browse files Browse the repository at this point in the history
* docs: proper github org name

* fix: add a github action to deploy doc
  • Loading branch information
hugoleborso authored Jan 24, 2024
1 parent b51fc8f commit 21d7dde
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflow/pages.yml → .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
branches: ["main"]
paths:
- 'documentation/**'
- "documentation/**"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: "18"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
Expand All @@ -53,4 +53,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4
4 changes: 2 additions & 2 deletions documentation/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ const config: Config = {
favicon: "img/fuego.ico",

// Set the production url of your site here
url: "https://fuego-go.github.io", //TODO
url: "https://go-fuego.github.io", //TODO
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: "/",

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: "fuego-go", // Usually your GitHub org/user name.
organizationName: "go-fuego", // Usually your GitHub org/user name.
projectName: "fuego", // Usually your repo name.

onBrokenLinks: "throw",
Expand Down

0 comments on commit 21d7dde

Please sign in to comment.