Skip to content

Commit

Permalink
Merge pull request cdapio#1839 from cdapio/add-cucumber-report-url
Browse files Browse the repository at this point in the history
Add cucumber report url to the workflow
  • Loading branch information
itsankit-google authored Jan 4, 2024
2 parents de7a6d6 + 3d14332 commit 923e603
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,22 +74,19 @@ jobs:
- name: Run all e2e tests
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || steps.filter.outputs.e2e-test == 'true'
run: python3 e2e/src/main/scripts/run_e2e_test.py --module ${{ matrix.module }}
- name: Upload report
uses: actions/[email protected]
if: always()
with:
name: Cucumber report
path: ./**/target/cucumber-reports
- name: Upload debug files
uses: actions/upload-artifact@v3
if: always()
with:
name: Debug files
path: ./**/target/e2e-debug
- name: Upload files to GCS
uses: google-github-actions/upload-cloud-storage@v0
uses: google-github-actions/upload-cloud-storage@v2
if: always()
with:
path: ./plugin
destination: e2e-tests-cucumber-reports/${{ github.event.repository.name }}/${{ github.ref }}
glob: '**/target/cucumber-reports/**'
- name: Cucumber Report URL
if: always()
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 comments on commit 923e603

Please sign in to comment.