diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index 4a0295dd7..c666821d7 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -83,7 +83,6 @@ jobs: echo "adding vanity url redirects to _redirects file.." touch ./build/_redirects array=( - aws confluent github openai diff --git a/README.md b/README.md index 529b99c70..e4f3a611b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,6 @@ This repository contains documentation for StackQL providers, which is published | --- | --- | -- | | GitHub Actions Build | [![GitHub Actions](https://github.com/stackql/stackql-registry-docs/actions/workflows/build-docs.yaml/badge.svg?branch=main)](https://github.com/stackql/stackql-registry-docs/actions/workflows/build-docs.yaml) | [stackql-registry-docs/actions](https://github.com/stackql/stackql-registry-docs/actions) | | Netlify Deploy Base | [![Netlify Status](https://api.netlify.com/api/v1/badges/75f838a9-79ea-41dc-96f9-a40dff50cfca/deploy-status)](https://app.netlify.com/sites/stackql-registry-docs/deploys) | [registry.stackql.io](https://registry.stackql.io) | -| Netlify Deploy AWS | [![Netlify Status](https://api.netlify.com/api/v1/badges/ef161c4a-63ea-4bcc-a5cb-5eaed30ed55f/deploy-status)](https://app.netlify.com/sites/stackql-aws-docs/deploys) | [aws-docs.stackql.io](https://aws-docs.stackql.io)
[aws.stackql.io](https://aws.stackql.io) | | Netlify Deploy GitHub | [![Netlify Status](https://api.netlify.com/api/v1/badges/625d7d38-37a9-4224-a9c8-6ee58141b109/deploy-status)](https://app.netlify.com/sites/stackql-github-docs/deploys) | [github-docs.stackql.io](https://github-docs.stackql.io)
[github.stackql.io](https://github.stackql.io) | | Netlify Deploy K8S | [![Netlify Status](https://api.netlify.com/api/v1/badges/d11ea6c5-7a43-42d5-ac76-555112295b9b/deploy-status)](https://app.netlify.com/sites/stackql-k8s-docs/deploys) | [k8s-docs.stackql.io](https://k8s-docs.stackql.io)
[k8s.stackql.io](https://k8s.stackql.io) | | Netlify Deploy Sumologic | [![Netlify Status](https://api.netlify.com/api/v1/badges/6c864774-8494-41be-8e2c-441b6d1e368c/deploy-status)](https://app.netlify.com/sites/stackql-sumologic-docs/deploys) | [sumologic-docs.stackql.io](https://sumologic-docs.stackql.io)
[sumologic.stackql.io](https://sumologic.stackql.io) | diff --git a/ci-scripts/get-providers-to-deploy.js b/ci-scripts/get-providers-to-deploy.js index c717bf79a..025c3bd79 100644 --- a/ci-scripts/get-providers-to-deploy.js +++ b/ci-scripts/get-providers-to-deploy.js @@ -7,7 +7,7 @@ const regex = /^docs\/[a-zA-Z0-9_-]+-docs\/*/;; const isMatchRegex = (path) => regex.test(path); const rootName = 'root' const allProviders = [ - 'aws', + // 'aws', // 'azure', // 'azure_extras', // 'azure_isv', diff --git a/package.json b/package.json index aeda26688..cfbbdc6f4 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,6 @@ "scripts": { "docusaurus": "docusaurus", "start": "docusaurus start", - "start:aws": "export REGISTRY=aws && docusaurus start", "start:github": "export REGISTRY=github && docusaurus start", "start:confluent": "export REGISTRY=confluent && docusaurus start", "start:openai": "export REGISTRY=openai && docusaurus start", @@ -15,7 +14,6 @@ "start:vercel": "export REGISTRY=vercel && docusaurus start", "start:homebrew": "export REGISTRY=homebrew && docusaurus start", "build:root": "docusaurus build", - "build:aws": "export REGISTRY=aws && docusaurus build", "build:github": "export REGISTRY=github && docusaurus build", "build:confluent": "export REGISTRY=confluent && docusaurus build", "build:openai": "export REGISTRY=openai && docusaurus build", diff --git a/sidebars.js b/sidebars.js index 997d3e53d..f7892b5f9 100644 --- a/sidebars.js +++ b/sidebars.js @@ -62,7 +62,8 @@ const getProviderSiteUrl = (name) =>{ 'azure', 'azure_extras', 'azure_isv', - 'azure_stack' + 'azure_stack', + 'aws' ].includes(name)) { return `https://${name.replace('_', '-')}-provider.stackql.io/` } else { diff --git a/src/configs/providers.ts b/src/configs/providers.ts index 29396e2c1..bef7604bf 100644 --- a/src/configs/providers.ts +++ b/src/configs/providers.ts @@ -52,7 +52,8 @@ export const getProviderSiteUrl = (name: string) =>{ 'azure', 'azure_extras', 'azure_isv', - 'azure_stack' + 'azure_stack', + 'aws', ].includes(name)) { return `https://${name.replace('_', '-')}-provider.stackql.io/` } else {