From f3366e7dd9beb32e98c614a8d915a98e87db8b72 Mon Sep 17 00:00:00 2001 From: rodelgc Date: Thu, 23 Mar 2023 23:29:53 +0800 Subject: [PATCH] Fix incorrect workflow input for uploading Allure reports on PR merge tests (#37404) * Fix incorrect input parameter * Add changelog --- .github/workflows/smoke-test-pr-merge.yml | 4 ++-- changelog/e2e-fix-allure-upload-input | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 changelog/e2e-fix-allure-upload-input diff --git a/.github/workflows/smoke-test-pr-merge.yml b/.github/workflows/smoke-test-pr-merge.yml index 3b3562f3004..60720ea8454 100644 --- a/.github/workflows/smoke-test-pr-merge.yml +++ b/.github/workflows/smoke-test-pr-merge.yml @@ -48,7 +48,7 @@ jobs: aws-access-key-id: ${{ secrets.REPORTS_AWS_ACCESS_KEY_ID }} aws-region: ${{ secrets.REPORTS_AWS_REGION }} 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 }} - name: Publish Allure report @@ -112,7 +112,7 @@ jobs: aws-access-key-id: ${{ secrets.REPORTS_AWS_ACCESS_KEY_ID }} aws-region: ${{ secrets.REPORTS_AWS_REGION }} 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 }} include-allure-results: false diff --git a/changelog/e2e-fix-allure-upload-input b/changelog/e2e-fix-allure-upload-input new file mode 100644 index 00000000000..3ff1edec50d --- /dev/null +++ b/changelog/e2e-fix-allure-upload-input @@ -0,0 +1,4 @@ +Significance: patch +Type: dev + +Fix the incorrect workflow input for uploading Allure reports.