Skip to content

Commit

Permalink
ci: print deployment summary
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Nov 29, 2024
1 parent ff5f3a2 commit 0d8b6bd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pullRequestsCommandCypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
working-directory: ${{ needs.baseBranch.outputs.base-branch }}
run: yarn setup-cypress --projectFolder ../new-webiny-project
Expand Down Expand Up @@ -524,7 +524,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
working-directory: ${{ needs.baseBranch.outputs.base-branch }}
run: yarn setup-cypress --projectFolder ../new-webiny-project
Expand Down Expand Up @@ -764,7 +764,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
working-directory: ${{ needs.baseBranch.outputs.base-branch }}
run: yarn setup-cypress --projectFolder ../new-webiny-project
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pushDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: dev
Expand Down Expand Up @@ -805,7 +805,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: dev
Expand Down Expand Up @@ -1023,7 +1023,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: dev
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pushNext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: next
Expand Down Expand Up @@ -805,7 +805,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: next
Expand Down Expand Up @@ -1023,7 +1023,7 @@ jobs:
run: >-
node
.github/workflows/wac/utils/runNodeScripts/printProjectSetupSummary.js
'' >> $GITHUB_STEP_SUMMARY"
'' >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: next
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wac/steps/createDeployWebinySteps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const createDeployWebinySteps = ({ workingDirectory = "dev" } = {}) => {
{
name: "Instance Info",
"working-directory": workingDirectory,
run: `${runNodeScript("printProjectSetupSummary")} >> $GITHUB_STEP_SUMMARY"`
run: `${runNodeScript("printProjectSetupSummary")} >> $GITHUB_STEP_SUMMARY`
}
];
};

0 comments on commit 0d8b6bd

Please sign in to comment.