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

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenpip3 committed Aug 13, 2023
1 parent e0dda04 commit 63117ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-local-action-inside-home.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
file-clean: "false"
file-path: "${{ github.workspace }}/tests/bats-file"
- name: Execute test to check Bats-support
if: steps.setup-bats-libs.support-installed == 'True'
if: steps.setup-bats-libs.outputs.support-installed == 'True'
run: |
cd /tmp/bats-support/
bats test
Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ runs:
rm -rf ${TEMPDIR} || exit 0
echo "$DESTDIR" >> "$GITHUB_PATH"
echo "installed=True" >> "$GITHUB_OUTPUT"
echo "bats-installed=True" >> "$GITHUB_OUTPUT"
- name: "Set cache for Bats-support"
uses: actions/cache@v3
Expand Down Expand Up @@ -176,7 +176,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 "support-installed=True" >> "$GITHUB_OUTPUT"
- name: "Download and install Bats-assert"
if: inputs.assert-install == 'true'
Expand Down

0 comments on commit 63117ca

Please sign in to comment.