@@ -89,9 +89,9 @@ outputs:
89
89
issues :
90
90
description : " The amount of issues found on the page"
91
91
value : ${{ steps.a11ywatch-results-generator.outputs.issues }}
92
- recording_dir :
93
- description : " The directory that holds recordings of audits. Only enabled when inputs.RECORD is set."
94
- value : ${{ steps.a11ywatch-recordings-directory.outputs.recording_dir }}
92
+ # recording_dir:
93
+ # description: "The directory that holds recordings of audits. Only enabled when inputs.RECORD is set."
94
+ # value: ${{ steps.a11ywatch-recordings-directory.outputs.recording_dir }}
95
95
runs :
96
96
using : composite
97
97
steps :
@@ -305,17 +305,18 @@ runs:
305
305
message : " fix(accessibility): add recommendations from scan"
306
306
committer_name : GitHub Actions
307
307
308
- - name : Get recording directory
309
- id : a11ywatch-recordings-directory
310
- if : ${{ inputs.RECORD && inputs.RECORD != 'false' && failure() || success() }}
311
- shell : bash
312
- run : echo "recording_dir=$( echo "$(a11ywatch --find-tmp-dir)""${{inputs.RECORD}}" )" >> $GITHUB_OUTPUT
308
+ # - name: Get recording directory
309
+ # id: a11ywatch-recordings-directory
310
+ # if: ${{ inputs.RECORD && inputs.RECORD != 'false' && failure() || success() }}
311
+ # shell: bash
312
+ # run: echo "recording_dir=$( echo "$(a11ywatch --find-tmp-dir)""/ ${{inputs.RECORD}}" )" >> $GITHUB_OUTPUT
313
313
314
314
- uses : actions/upload-artifact@v3
315
315
if : ${{ inputs.RECORD && inputs.RECORD != 'false' && failure() || success() }}
316
316
with :
317
317
name : Recordings
318
- path : ${{ steps.a11ywatch-recordings-directory.outputs.recording_dir }}
318
+ # path: ${{ steps.a11ywatch-recordings-directory.outputs.recording_dir }}
319
+ path : ${{ inputs.RECORD }}
319
320
320
321
- name : Stop A11yWatch Service
321
322
if : ${{ !inputs.EXTERNAL }}
0 commit comments