Skip to content

Commit

Permalink
change a post command to test another wrangler command
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobMGEvans committed Jul 17, 2023
1 parent cad4097 commit 135875b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
echo "*** pre commands ***"
echo "******"
postCommands: |
echo "*** post commands ***"
wrangler secret list
echo "******"
- name: Environment support
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const config = {
COMMANDS: getMultilineInput("commands"),
} as const;

export async function main() {
async function main() {
installWrangler();
authenticationSetup();
await execCommands(getMultilineInput("preCommands"));
Expand Down Expand Up @@ -193,6 +193,7 @@ async function wranglerCommands() {
await exec(`npx wrangler ${command}`, {
cwd: config["workingDirectory"],
env: process.env,
stdio: "pipe",
})
);
await Promise.all(arrPromises);
Expand Down

0 comments on commit 135875b

Please sign in to comment.