Skip to content

Commit b6b35aa

Browse files
Add cucumber report url to the workflow
1 parent e2b5b4d commit b6b35aa

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/e2e.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,6 @@ jobs:
156156
CLOUDSQL_MYSQL_PASSWORD: ${{ steps.secrets.outputs.CLOUDSQL_MYSQL_PASSWORD }}
157157
CLOUDSQL_MYSQL_CONNECTION_NAME: ${{ steps.secrets.outputs.CLOUDSQL_MYSQL_CONNECTION_NAME }}
158158

159-
- name: Upload report
160-
uses: actions/upload-artifact@v3
161-
if: always()
162-
with:
163-
name: Cucumber report - ${{ matrix.module }}
164-
path: ./**/target/cucumber-reports
165-
166159
- name: Upload debug files
167160
uses: actions/upload-artifact@v3
168161
if: always()
@@ -171,9 +164,13 @@ jobs:
171164
path: ./**/target/e2e-debug
172165

173166
- name: Upload files to GCS
174-
uses: google-github-actions/upload-cloud-storage@v0
167+
uses: google-github-actions/upload-cloud-storage@v2
175168
if: always()
176169
with:
177170
path: ./plugin
178171
destination: e2e-tests-cucumber-reports/${{ github.event.repository.name }}/${{ github.ref }}
179172
glob: '**/target/cucumber-reports/**'
173+
174+
- name: Cucumber Report URL
175+
if: always()
176+
run: echo "https://storage.googleapis.com/e2e-tests-cucumber-reports/${{ github.event.repository.name }}/${{ github.ref }}/plugin/${{ matrix.module }}/target/cucumber-reports/advanced-reports/cucumber-html-reports/overview-features.html"

0 commit comments

Comments
 (0)