From fb99d4502c06576103da0c51b7b0f50bca686a61 Mon Sep 17 00:00:00 2001 From: Dinakar <26552821+dinakar29@users.noreply.github.com> Date: Wed, 18 May 2022 14:01:18 -0500 Subject: [PATCH] Update validate_generic_master.yaml --- .github/workflows/validate_generic_master.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate_generic_master.yaml b/.github/workflows/validate_generic_master.yaml index c9d7d0f4b..f6f443b9b 100644 --- a/.github/workflows/validate_generic_master.yaml +++ b/.github/workflows/validate_generic_master.yaml @@ -23,15 +23,16 @@ jobs: uses: actions/checkout@v2 - name: Build report 🏗 - uses: insightsengineering/thevalidatoR@v1.1.3 + id: validation + uses: insightsengineering/thevalidatoR@v1.2.1 # Upload the validation report to the release - name: Upload report to release 🔼 if: success() uses: svenstaro/upload-release-action@v2 with: - file: ./validation_report.pdf - asset_name: validation-report.pdf + file: ${{ steps.validation.outputs.report_output_filename }} + asset_name: ${{ steps.validation.outputs.report_output_filename }} repo_token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ github.ref }} overwrite: false