Skip to content

Commit

Permalink
Merge pull request #185 from stackql/feature/doc-updates
Browse files Browse the repository at this point in the history
nav consistency
  • Loading branch information
jeffreyaven authored Sep 16, 2024
2 parents 0d9ad8c + 32fcc0c commit 7f78582
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
3 changes: 2 additions & 1 deletion ci-scripts/get-providers-to-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ module.exports = async ({ github, context, core, pathOutput }) => {

// if(!(diff.startsWith('.github')) || !(diff.startsWith('scripts'))) globalChange = true;

globalChange = false;
// globalChange = false;
globalChange = true;


}).filter(Boolean)
Expand Down
19 changes: 12 additions & 7 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,26 +109,31 @@ const config = {
srcDark: 'img/logo-white.svg',
},
items: [
// {
// to: '/features',
// label: 'Features',
// position: 'left',
// },
{
to: '/features',
label: 'Features',
to: '/docs',
label: 'Docs',
position: 'left',
},
{
to: '/downloads',
label: 'Downloads',
position: 'left',
},
{
to: '/docs',
label: 'Documentation',
position: 'left',
},
{
to: '/',
label: 'Providers',
position: 'left',
},
{
to: '/stackql-deploy',
label: 'stackql-deploy',
position: 'left',
},
{
type: 'dropdown',
label: 'Resources',
Expand Down
10 changes: 10 additions & 0 deletions src/pages/stackql-deploy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default function StackQLDeploy() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql-deploy.io/'" />
</Head>
);
};

0 comments on commit 7f78582

Please sign in to comment.