Skip to content

Commit

Permalink
Merge pull request #360 from insightsengineering/update-validator-act…
Browse files Browse the repository at this point in the history
…ion-version

Fix validation workflow
  • Loading branch information
gowerc authored May 23, 2022
2 parents 9bd6f71 + fb99d45 commit a45df71
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/validate_generic_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@ jobs:
uses: actions/checkout@v2

- name: Build report 🏗
uses: insightsengineering/[email protected]
id: validation
uses: insightsengineering/[email protected]

# 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

0 comments on commit a45df71

Please sign in to comment.