Skip to content

Commit f962bae

Browse files
committed
fix tests
1 parent b1f4bc2 commit f962bae

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
- uses: actions/download-artifact@v4
2020
with:
2121
pattern: ${{ format('{0}*', inputs.group) }}
22-
path: public
22+
path: public/${{ github.run_id }}
2323

2424
- name: Deploy 🚀
2525
uses: JamesIves/github-pages-deploy-action@v4
2626
with:
2727
folder: public
28+
clean: false

.github/workflows/tests-backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
environment:
2222
name: staging
23-
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ env.REPORT_NAME }}/report
23+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}/report
2424
steps:
2525
- uses: actions/checkout@v4
2626

.github/workflows/tests-e2e-appimage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
name: E2E AppImage tests
4141
environment:
4242
name: production
43-
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ env.REPORT_NAME }}
43+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}
4444
steps:
4545
- uses: actions/checkout@v4
4646

.github/workflows/tests-e2e-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
name: E2E Docker tests
3737
environment:
3838
name: production
39-
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ env.REPORT_NAME }}-${{ matrix.parallel }}
39+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}-${{ matrix.parallel }}
4040
container:
4141
image: docker:latest
4242
options: --privileged

.github/workflows/tests-frontend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Frontend tests
1515
environment:
1616
name: staging
17-
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ env.REPORT_NAME }}/report
17+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}/report
1818
steps:
1919
- uses: actions/checkout@v4
2020

.github/workflows/tests-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
needs: set-matrix
8989
environment:
9090
name: production
91-
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ env.REPORT_NAME }}-${{ matrix.rte }}
91+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}-${{ matrix.rte }}
9292
strategy:
9393
fail-fast: false
9494
matrix:

0 commit comments

Comments
 (0)