diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1ed03ba7..5b5f1311 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -54,7 +54,7 @@ jobs: echo "*** pre commands ***" echo "******" postCommands: | - echo "*** post commands ***" + wrangler secret list echo "******" - name: Environment support diff --git a/src/index.ts b/src/index.ts index 2af8bd42..6c38b517 100755 --- a/src/index.ts +++ b/src/index.ts @@ -31,7 +31,7 @@ const config = { COMMANDS: getMultilineInput("commands"), } as const; -export async function main() { +async function main() { installWrangler(); authenticationSetup(); await execCommands(getMultilineInput("preCommands")); @@ -193,6 +193,7 @@ async function wranglerCommands() { await exec(`npx wrangler ${command}`, { cwd: config["workingDirectory"], env: process.env, + stdio: "pipe", }) ); await Promise.all(arrPromises);