From 32fcc0c3bde8d5f5e81bc373f77e908d9fc82ca2 Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Mon, 16 Sep 2024 22:03:52 +1000 Subject: [PATCH] nav consistency --- ci-scripts/get-providers-to-deploy.js | 3 ++- docusaurus.config.js | 19 ++++++++++++------- src/pages/stackql-deploy.js | 10 ++++++++++ 3 files changed, 24 insertions(+), 8 deletions(-) create mode 100644 src/pages/stackql-deploy.js diff --git a/ci-scripts/get-providers-to-deploy.js b/ci-scripts/get-providers-to-deploy.js index 1299519836..10e03c0be6 100644 --- a/ci-scripts/get-providers-to-deploy.js +++ b/ci-scripts/get-providers-to-deploy.js @@ -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) diff --git a/docusaurus.config.js b/docusaurus.config.js index f082a065a4..626a1fcf63 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -109,9 +109,14 @@ const config = { srcDark: 'img/logo-white.svg', }, items: [ + // { + // to: '/features', + // label: 'Features', + // position: 'left', + // }, { - to: '/features', - label: 'Features', + to: '/docs', + label: 'Docs', position: 'left', }, { @@ -119,16 +124,16 @@ const config = { 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', diff --git a/src/pages/stackql-deploy.js b/src/pages/stackql-deploy.js new file mode 100644 index 0000000000..b34a0fa054 --- /dev/null +++ b/src/pages/stackql-deploy.js @@ -0,0 +1,10 @@ +import React from 'react'; +import Head from '@docusaurus/Head'; + +export default function StackQLDeploy() { + return ( + + + + ); +}; \ No newline at end of file