Skip to content

Commit

Permalink
chore(recording): fix input parsing (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez authored Sep 22, 2023
1 parent 6d9ce8a commit 404c46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ runs:
id: a11ywatch-recordings-directory
if: ${{ inputs.RECORD && inputs.RECORD != 'false' && failure() || success() }}
shell: bash
run: echo "recording_dir=$( echo "$(a11ywatch --find-tmp-dir)""$inputs.RECORD" )" >> $GITHUB_OUTPUT
run: echo "recording_dir=$( echo "$(a11ywatch --find-tmp-dir)""${{inputs.RECORD}}" )" >> $GITHUB_OUTPUT

- uses: actions/upload-artifact@v3
if: ${{ inputs.RECORD && inputs.RECORD != 'false' && failure() || success() }}
Expand Down

0 comments on commit 404c46c

Please sign in to comment.