Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
lowercase true
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenpip3 committed Aug 13, 2023
1 parent 5d3337e commit 308ca2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ runs:
rm -rf ${TEMPDIR} || exit 0
echo "$DESTDIR" >> "$GITHUB_PATH"
echo "installed=True" >> $GITHUB_OUTPUT
echo "installed=true" >> $GITHUB_OUTPUT
- name: "Set cache for Bats-support"
uses: actions/cache@v3
Expand Down Expand Up @@ -186,7 +186,7 @@ runs:
echo "Bats Support v$VERSION installed in $DESTDIR"
# Cleanup bats-support if required
[[ "${{ inputs.support-clean }}" = "true" ]] && rm -rf ${TEMPDIR} || exit 0
echo "installed=True" >> "$GITHUB_OUTPUT"
echo "installed=true" >> "$GITHUB_OUTPUT"
- name: "Set cache for Bats-assert"
uses: actions/cache@v3
Expand Down Expand Up @@ -219,7 +219,7 @@ runs:
echo "Bats Assert v$VERSION installed in $DESTDIR"
# Cleanup bats-support if required
[[ "${{ inputs.assert-clean }}" = "true" ]] && rm -rf ${TEMPDIR} || exit 0
echo "installed=True" >> "$GITHUB_OUTPUT"
echo "installed=true" >> "$GITHUB_OUTPUT"
- name: "Set cache for Bats-detik"
uses: actions/cache@v3
Expand Down Expand Up @@ -251,7 +251,7 @@ runs:
echo "Bats Detik v$VERSION installed in $DESTDIR"
# Cleanup bats-support if required
[[ "${{ inputs.detik-clean }}" = "true" ]] && rm -rf ${TEMPDIR} || exit 0
echo "installed=True" >> "$GITHUB_OUTPUT"
echo "installed=true" >> "$GITHUB_OUTPUT"
- name: "Set cache for Bats-file"
uses: actions/cache@v3
Expand Down Expand Up @@ -284,4 +284,4 @@ runs:
echo "Bats File v$VERSION installed in $DESTDIR"
# Cleanup bats-support if required
[[ "${{ inputs.file-clean }}" = "true" ]] && rm -rf ${TEMPDIR} || exit 0
echo "installed=True" >> "$GITHUB_OUTPUT"
echo "installed=true" >> "$GITHUB_OUTPUT"

0 comments on commit 308ca2d

Please sign in to comment.