diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5e9c733..f988666 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -34,4 +34,7 @@ jobs: if: github.event_name != 'push' && !cancelled() steps: - name: Result - run: ${{ needs.build.result == 'success' }} + env: + RESULT: ${{ needs.build.result }} + run: | + [[ "${RESULT}" == success ]]