@@ -19,12 +19,6 @@ inputs:
1919 license :
2020 description : ' license (b64) to use for e2e tests'
2121 required : true
22- testim-access-token :
23- description : ' testim access token'
24- required : true
25- testim-branch :
26- description : ' testim branch'
27- required : true
2822 dr-aws-access-key-id :
2923 description : ' Disaster Recovery AWS Access Key ID'
3024 required : true
9084 export SNAPSHOT_LICENSE_ID=${{ inputs.snapshot-license-id }}
9185 echo "${{ inputs.license }}" | base64 --decode > e2e/license.yaml
9286 echo "${{ inputs.snapshot-license }}" | base64 --decode > e2e/snapshot-license.yaml
93- export TESTIM_ACCESS_TOKEN=${{ inputs.testim-access-token }}
94- export TESTIM_BRANCH=${{ inputs.testim-branch }}
9587 export DR_AWS_S3_ENDPOINT=https://s3.amazonaws.com
9688 export DR_AWS_S3_REGION=us-east-1
9789 export DR_AWS_S3_BUCKET=kots-testim-snapshots
@@ -103,20 +95,20 @@ runs:
10395 uses : actions/upload-artifact@v4
10496 if : ${{ failure() }}
10597 with :
106- name : ${{ github.job }}-support-bundle-host.tar.gz
98+ name : ${{ inputs.test-name }}-support-bundle-host.tar.gz
10799 path : ./e2e/support-bundle-host.tar.gz
108100 - name : Upload Cluster Support Bundle
109101 uses : actions/upload-artifact@v4
110102 if : ${{ failure() }}
111103 with :
112- name : ${{ github.job }}-support-bundle-cluster.tar.gz
104+ name : ${{ inputs.test-name }}-support-bundle-cluster.tar.gz
113105 path : ./e2e/support-bundle-cluster.tar.gz
114106 - name : Upload Playwright Report
115107 id : upload-playwright-report
116108 uses : actions/upload-artifact@v4
117109 if : ${{ failure() }}
118110 with :
119- name : ${{ github.job }}-playwright-report.tar.gz
111+ name : ${{ inputs.test-name }}-playwright-report.tar.gz
120112 path : ./e2e/playwright-report.tar.gz
121113 - name : Print instructions to view Playwright report
122114 if : ${{ failure() && steps.upload-playwright-report.outputs.artifact-url != '' }}
0 commit comments