diff --git a/.github/workflows/web-deploy-dockerhub.yml b/.github/workflows/web-deploy-dockerhub.yml index 7b4f75c6ec..33b337c77f 100644 --- a/.github/workflows/web-deploy-dockerhub.yml +++ b/.github/workflows/web-deploy-dockerhub.yml @@ -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: | @@ -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: | @@ -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 }} diff --git a/.github/workflows/web-e2e-full-ondemand.yml b/.github/workflows/web-e2e-full-ondemand.yml index f26fc21244..4474ae41a8 100644 --- a/.github/workflows/web-e2e-full-ondemand.yml +++ b/.github/workflows/web-e2e-full-ondemand.yml @@ -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 diff --git a/.github/workflows/web-e2e-hp-ondemand.yml b/.github/workflows/web-e2e-hp-ondemand.yml index 4533141fef..480e1a7c57 100644 --- a/.github/workflows/web-e2e-hp-ondemand.yml +++ b/.github/workflows/web-e2e-hp-ondemand.yml @@ -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" diff --git a/.github/workflows/web-e2e-ondemand.yml b/.github/workflows/web-e2e-ondemand.yml index 5679ed5441..cb4938230d 100644 --- a/.github/workflows/web-e2e-ondemand.yml +++ b/.github/workflows/web-e2e-ondemand.yml @@ -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 diff --git a/.github/workflows/web-e2e-prod-ondemand.yml b/.github/workflows/web-e2e-prod-ondemand.yml index f147926513..6654ded6d9 100644 --- a/.github/workflows/web-e2e-prod-ondemand.yml +++ b/.github/workflows/web-e2e-prod-ondemand.yml @@ -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