Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ jobs:
echo "adding vanity url redirects to _redirects file.."
touch ./build/_redirects
array=(
aws
confluent
github
openai
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)<br/>[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)<br/>[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)<br/>[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)<br/>[sumologic.stackql.io](https://sumologic.stackql.io) |
Expand Down
2 changes: 1 addition & 1 deletion ci-scripts/get-providers-to-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 2 additions & 1 deletion src/configs/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down