Skip to content

Commit 5090499

Browse files
Merge pull request #4056 from RedisInsight/gh/actions/fixes
fixes for gh actions
2 parents cda06e8 + 47af1fd commit 5090499

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.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 }}/${{ github.run_id }}/${{ env.REPORT_NAME }}/report
23+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}
2424
steps:
2525
- uses: actions/checkout@v4
2626

.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 }}/${{ github.run_id }}/${{ env.REPORT_NAME }}/report
17+
url: ${{ env.DEFAULT_GITHUB_PAGES_URL }}/${{ github.run_id }}/${{ env.REPORT_NAME }}
1818
steps:
1919
- uses: actions/checkout@v4
2020

.github/workflows/tests-integration.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ jobs:
156156
runs-on: ubuntu-latest
157157
name: Final coverage
158158
needs: run-tests
159+
if: always()
159160
steps:
160161
- uses: actions/checkout@v4
161162

@@ -170,7 +171,7 @@ jobs:
170171
- name: Download coverage artifacts
171172
uses: actions/download-artifact@v4
172173
with:
173-
pattern: coverages-artifacts
174+
name: coverages-artifacts
174175
path: ./coverages
175176

176177
- name: Calculate coverage across all tests runs

0 commit comments

Comments
 (0)