Skip to content

Commit

Permalink
Merge pull request #6031 from shaneknapp/change-debug-output-to-verbo…
Browse files Browse the repository at this point in the history
…se-actions

[DH-301] changing debug output to verbose
  • Loading branch information
shaneknapp authored Aug 27, 2024
2 parents ae21473 + 594dfe5 commit bbec296
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-all-hubs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
fi
done
echo "Pretending to deploy base hub image to ${deployment} :P"
echo "hubploy deploy --debug ${deployment} hub staging"
echo "hubploy deploy --verbose ${deployment} hub staging"
done < <(ls deployments/ | sed -e 's,/,,g')
deploy-hub-images-prod:
Expand Down Expand Up @@ -185,5 +185,5 @@ jobs:
fi
done
echo "Pretending to deploy base hub image to ${deployment} :P"
echo "hubploy deploy --debug ${deployment} hub prod"
echo "hubploy deploy --verbose ${deployment} hub prod"
done < <(ls deployments/ | sed -e 's,/,,g')
4 changes: 2 additions & 2 deletions .github/workflows/deploy-hubs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
run: |
for hub in $(echo -e "${{ env.DEPLOY_HUBS }}"); do
echo "Deploying $hub to staging"
echo "hubploy --debug deploy $hub hub staging"
echo "hubploy --verbose deploy $hub hub staging"
done
deploy-hubs-to-prod:
Expand Down Expand Up @@ -201,5 +201,5 @@ jobs:
run: |
for hub in $(echo -e "${{ env.DEPLOY_HUBS }}"); do
echo "Deploying $hub to prod"
echo "hubploy --debug deploy $hub hub prod"
echo "hubploy --verbose deploy $hub hub prod"
done

0 comments on commit bbec296

Please sign in to comment.