Skip to content

Commit 7f78582

Browse files
authored
Merge pull request #185 from stackql/feature/doc-updates
nav consistency
2 parents 0d9ad8c + 32fcc0c commit 7f78582

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

ci-scripts/get-providers-to-deploy.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ module.exports = async ({ github, context, core, pathOutput }) => {
5252

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

55-
globalChange = false;
55+
// globalChange = false;
56+
globalChange = true;
5657

5758

5859
}).filter(Boolean)

docusaurus.config.js

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,26 +109,31 @@ const config = {
109109
srcDark: 'img/logo-white.svg',
110110
},
111111
items: [
112+
// {
113+
// to: '/features',
114+
// label: 'Features',
115+
// position: 'left',
116+
// },
112117
{
113-
to: '/features',
114-
label: 'Features',
118+
to: '/docs',
119+
label: 'Docs',
115120
position: 'left',
116121
},
117122
{
118123
to: '/downloads',
119124
label: 'Downloads',
120125
position: 'left',
121126
},
122-
{
123-
to: '/docs',
124-
label: 'Documentation',
125-
position: 'left',
126-
},
127127
{
128128
to: '/',
129129
label: 'Providers',
130130
position: 'left',
131131
},
132+
{
133+
to: '/stackql-deploy',
134+
label: 'stackql-deploy',
135+
position: 'left',
136+
},
132137
{
133138
type: 'dropdown',
134139
label: 'Resources',

src/pages/stackql-deploy.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react';
2+
import Head from '@docusaurus/Head';
3+
4+
export default function StackQLDeploy() {
5+
return (
6+
<Head>
7+
<meta http-equiv="refresh" content="0;URL='https://stackql-deploy.io/'" />
8+
</Head>
9+
);
10+
};

0 commit comments

Comments
 (0)