Fix incorrect workflow input for uploading Allure reports on PR merge tests (#37404)
* Fix incorrect input parameter * Add changelog
This commit is contained in:
parent
627c2bce01
commit
f3366e7dd9
|
@ -48,7 +48,7 @@ jobs:
|
||||||
aws-access-key-id: ${{ secrets.REPORTS_AWS_ACCESS_KEY_ID }}
|
aws-access-key-id: ${{ secrets.REPORTS_AWS_ACCESS_KEY_ID }}
|
||||||
aws-region: ${{ secrets.REPORTS_AWS_REGION }}
|
aws-region: ${{ secrets.REPORTS_AWS_REGION }}
|
||||||
aws-secret-access-key: ${{ secrets.REPORTS_AWS_SECRET_ACCESS_KEY }}
|
aws-secret-access-key: ${{ secrets.REPORTS_AWS_SECRET_ACCESS_KEY }}
|
||||||
destination-dir: ${{ env.ARTIFACT_NAME }}
|
artifact-name: ${{ env.ARTIFACT_NAME }}
|
||||||
s3-bucket: ${{ secrets.REPORTS_BUCKET }}
|
s3-bucket: ${{ secrets.REPORTS_BUCKET }}
|
||||||
|
|
||||||
- name: Publish Allure report
|
- name: Publish Allure report
|
||||||
|
@ -112,7 +112,7 @@ jobs:
|
||||||
aws-access-key-id: ${{ secrets.REPORTS_AWS_ACCESS_KEY_ID }}
|
aws-access-key-id: ${{ secrets.REPORTS_AWS_ACCESS_KEY_ID }}
|
||||||
aws-region: ${{ secrets.REPORTS_AWS_REGION }}
|
aws-region: ${{ secrets.REPORTS_AWS_REGION }}
|
||||||
aws-secret-access-key: ${{ secrets.REPORTS_AWS_SECRET_ACCESS_KEY }}
|
aws-secret-access-key: ${{ secrets.REPORTS_AWS_SECRET_ACCESS_KEY }}
|
||||||
destination-dir: ${{ env.ARTIFACT_NAME }}
|
artifact-name: ${{ env.ARTIFACT_NAME }}
|
||||||
s3-bucket: ${{ secrets.REPORTS_BUCKET }}
|
s3-bucket: ${{ secrets.REPORTS_BUCKET }}
|
||||||
include-allure-results: false
|
include-allure-results: false
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
Fix the incorrect workflow input for uploading Allure reports.
|
Loading…
Reference in New Issue