File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 77import path from 'path'
88import { fileURLToPath } from 'url'
99
10- import { CLIENT_ENV_PREFIX , clientEnvSchema } from '@codebuff/common/env-schema'
11- import { serverEnvSchema } from '@codebuff/internal/env-schema'
10+ import { CLIENT_ENV_PREFIX , clientEnvVars } from '@codebuff/common/env-schema'
11+ import { serverEnvVars } from '@codebuff/internal/env-schema'
1212
1313const __filename = fileURLToPath ( import . meta. url )
1414const __dirname = path . dirname ( __filename )
@@ -50,8 +50,8 @@ function parseArgs() {
5050function generateGitHubEnv ( ) {
5151 const { prefix, scope } = parseArgs ( )
5252 const varsByScope = {
53- all : Object . keys ( serverEnvSchema ) ,
54- client : Object . keys ( clientEnvSchema ) ,
53+ all : serverEnvVars ,
54+ client : clientEnvVars ,
5555 }
5656
5757 let selected : string [ ] = [ ]
You can’t perform that action at this time.
0 commit comments