File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ ALGOLIA_APP_ID=8U0Z3F95NH
55ALGOLIA_API_KEY = 45caa5b7ec2fd9e5f3dbfe8b3c661c04
66ALGOLIA_INDEX_NAME = powersync-react-native-sdk-react-native-sdk
77
8- GITHUB_URL = https://powersync-ja.github.io/
9- GITHUB_ORG = powersync-ja
10- GITHUB_PROJECT_NAME = powersync-react-native-sdk
8+ # Can't use GITHUB_ when using Github actions
9+ GH_URL = https://powersync-ja.github.io/
10+ GH_ORG = powersync-ja
11+ GH_PROJECT_NAME = powersync-react-native-sdk
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import type * as Preset from '@docusaurus/preset-classic';
44import { packageMap } from './utils/packageMap' ;
55import 'dotenv/config'
66
7- const PROJECT_NAME = process . env . GITHUB_PROJECT_NAME
7+ const PROJECT_NAME = process . env . GH_PROJECT_NAME
88
99const plugins = Object . entries ( packageMap ) . map ( ( [ id , config ] ) => [
1010 'docusaurus-plugin-typedoc' ,
@@ -25,14 +25,14 @@ const config: Config = {
2525 } ,
2626
2727 // Set the production url of your site here
28- url : process . env . GITHUB_URL ,
28+ url : process . env . GH_URL ,
2929 // Set the /<baseUrl>/ pathname under which your site is served
3030 // For GitHub pages deployment, it is often '/<projectName>/'
3131 baseUrl : `/${ PROJECT_NAME } /` ,
3232 trailingSlash : false ,
3333 // GitHub pages deployment config.
3434 // If you aren't using GitHub pages, you don't need these.
35- organizationName : process . env . GITHUB_ORG ,
35+ organizationName : process . env . GH_ORG ,
3636 projectName : PROJECT_NAME ,
3737
3838 onBrokenLinks : 'warn' ,
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ declare global {
77 META_LOGO_URL : string ;
88 ALGOLIA_APP_ID : string ;
99 ALGOLIA_API_KEY : string ;
10- GITHUB_URL : string ;
11- GITHUB_ORG : string ;
10+ GH_URL : string ;
11+ GH_ORG : string ;
1212 }
1313 }
1414}
You can’t perform that action at this time.
0 commit comments