Skip to content

Commit

Permalink
ci: add deployment summary [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Nov 28, 2024
1 parent 481d21f commit b205212
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pullRequestsCommandCypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $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 @@ -513,6 +516,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $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 @@ -747,6 +753,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
working-directory: ${{ needs.baseBranch.outputs.base-branch }}
run: yarn setup-cypress --projectFolder ../new-webiny-project
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pushDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: dev
Expand Down Expand Up @@ -794,6 +797,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: dev
Expand Down Expand Up @@ -1006,6 +1012,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: dev
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pushNext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: next
Expand Down Expand Up @@ -794,6 +797,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: next
Expand Down Expand Up @@ -1006,6 +1012,9 @@ jobs:
- name: Deploy Website
working-directory: new-webiny-project
run: yarn webiny deploy apps/website --env dev
- name: Instance Info
working-directory: new-webiny-project
run: yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY
- name: Create Cypress config
run: yarn setup-cypress --projectFolder ../new-webiny-project
working-directory: next
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/wac/steps/createDeployWebinySteps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ export const createDeployWebinySteps = ({ workingDirectory = "dev" } = {}) => {
name: "Deploy Website",
"working-directory": workingDirectory,
run: "yarn webiny deploy apps/website --env dev"
},
{
name: "Instance Info",
"working-directory": workingDirectory,
run: "yarn webiny info --env dev >> $GITHUB_STEP_SUMMARY"
}
];
};

0 comments on commit b205212

Please sign in to comment.