Skip to content

Commit

Permalink
fix baseUrl for docusaurus (#463)
Browse files Browse the repository at this point in the history
* fix baseUrl for docusaurus

also temporarily allow PRs to deploy

* fix markdown build error. example of errors:

./values_to_doc.sh: 7: [[: not found
./values_to_doc.sh: 14: [[: not found
./values_to_doc.sh: 7: [[: not found
./values_to_doc.sh: 14: [[: not found

* remove temporary PR deploy
  • Loading branch information
nicolasochem authored Jun 14, 2022
1 parent a761c20 commit 04b44c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
const config = {
title: 'Tezos K8s',
tagline: 'Deploy a Tezos Blockchain on Kubernetes',
url: 'https://oxheadalpha.com',
baseUrl: '/tezos-k8s/',
url: 'https://tezos-k8s.xyz',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
Expand Down
2 changes: 1 addition & 1 deletion docs/values_to_doc.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

extract_markdown() {
uncommented=false
Expand Down

0 comments on commit 04b44c7

Please sign in to comment.