Skip to content

Commit

Permalink
skip download if failed
Browse files Browse the repository at this point in the history
  • Loading branch information
hussam-i-am committed Jan 8, 2025
1 parent e3ea470 commit d799e78
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,25 @@ jobs:
- name: Build docs preview
run: npm run build:docs:preview
- name: Download VRT reports (All flags enabled)
if: ${{ needs.vrt-reports.result == 'success' }}
uses: actions/download-artifact@v4
with:
name: vrt-all-flags
path: docs/public/vrt-all-flags
- name: Download VRT reports (No flags enabled)
if: ${{ needs.vrt-reports.result == 'success' }}
uses: actions/download-artifact@v4
with:
name: vrt-no-flag
path: docs/public/vrt-no-flag
- name: Download AAT reports (All flags enabled)
if: ${{ needs.aat-reports.result == 'success' }}
uses: actions/download-artifact@v4
with:
name: axe-all-flags
path: docs/public/aat-all-flags
- name: Download AAT reports (No flags enabled)
if: ${{ needs.aat-reports.result == 'success' }}
uses: actions/download-artifact@v4
with:
name: axe
Expand Down

0 comments on commit d799e78

Please sign in to comment.