Skip to content

Commit

Permalink
ci: make artifact names unique for daily integration tests (launchdar…
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld authored and Moshe Good committed Feb 22, 2024
1 parent 4d657ac commit aaf06f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ jobs:
if: steps.integration-test.outcome == 'success'
id: process-integration-test
shell: bash
run: go-junit-report < raw_report.txt > junit_report_integrationtests_${{ inputs.go-version }}.xml
run: go-junit-report < raw_report.txt > junit_report_integrationtests.xml

- name: Upload test results
if: steps.process-integration-test.outcome == 'success'
uses: actions/upload-artifact@v4
with:
name: Integration-test-results-${{ inputs.environment }}-${{ inputs.go-version }}
path: junit_report_integrationtests_${{ inputs.go-version }}.xml
name: Integration-test-results-relay-${{ inputs.branch }}-${{ inputs.environment }}-${{ inputs.go-version }}
path: junit_report_integrationtests.xml

0 comments on commit aaf06f9

Please sign in to comment.