Skip to content

Commit

Permalink
Chore: fix docker and on-demand e2e jobs (#4719)
Browse files Browse the repository at this point in the history
* Chore: fix docker deploy path

* Fix e2e on-deman jobs
  • Loading branch information
katspaugh authored Jan 2, 2025
1 parent 1a4e706 commit def2640
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/web-deploy-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v6
with:
context: ./apps/web
push: true
tags: safeglobal/safe-wallet-web:staging
platforms: |
Expand All @@ -42,6 +43,7 @@ jobs:
if: github.ref == 'refs/heads/dev'
uses: docker/build-push-action@v6
with:
context: ./apps/web
push: true
tags: safeglobal/safe-wallet-web:dev
platforms: |
Expand All @@ -53,6 +55,7 @@ jobs:
if: (github.event_name == 'release' && github.event.action == 'released')
uses: docker/build-push-action@v6
with:
context: ./apps/web
push: true
tags: |
safeglobal/safe-wallet-web:${{ github.event.release.tag_name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-e2e-full-ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ jobs:
parse_junit \
--title "Full Regression Automated Tests, branch: ${GITHUB_REF_NAME}" \
--run-description ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \
-f "reports/junit-report.xml"; then
-f "apps/web/reports/junit-report.xml"; then
echo -e "\e[41;32mTestRail upload failed. Pipeline will continue, please check the upload process.\e[0m"
fi
2 changes: 1 addition & 1 deletion .github/workflows/web-e2e-hp-ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ jobs:
parse_junit \
--title "Happy Path Automated Tests, branch: ${GITHUB_REF_NAME}" \
--run-description ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \
-f "reports/junit-report.xml"
-f "apps/web/reports/junit-report.xml"
2 changes: 1 addition & 1 deletion .github/workflows/web-e2e-ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ jobs:
parse_junit \
--title "Regression Automated Tests, branch: ${GITHUB_REF_NAME}" \
--run-description ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \
-f "reports/junit-report.xml"; then
-f "apps/web/reports/junit-report.xml"; then
echo -e "\e[41;32mTestRail upload failed. Pipeline will continue, please check the upload process.\e[0m"
fi
2 changes: 1 addition & 1 deletion .github/workflows/web-e2e-prod-ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ jobs:
parse_junit \
--title "Production Health Checks Automated Tests, branch: ${GITHUB_REF_NAME}" \
--run-description ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \
-f "reports/junit-report.xml"; then
-f "apps/web/reports/junit-report.xml"; then
echo -e "\e[41;32mTestRail upload failed. Pipeline will continue, please check the upload process.\e[0m"
fi

0 comments on commit def2640

Please sign in to comment.