Skip to content

Commit 4715cca

Browse files
committed
tes
1 parent 7d45655 commit 4715cca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actions/preview/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ runs:
2121
id: type
2222
shell: bash
2323
env:
24-
IS_DEPLOYMENT: ${{ github.event_name == 'pull_request' || github.ref == 'refs/heads/main' }}
25-
IS_CLEANUP: ${{ github.event_name == 'pull_request_target' && github.event.action == 'closed' }}
24+
IS_DEPLOYMENT: ${{ toJSON(github.event_name == 'pull_request' || github.ref == 'refs/heads/main') }}
25+
IS_CLEANUP: ${{ toJSON(github.event_name == 'pull_request_target' && github.event.action == 'closed') }}
2626
run: |
2727
echo "IS_DEPLOYMENT=${IS_DEPLOYMENT}" >> $GITHUB_OUTPUT
2828
echo "IS_CLEANUP=${IS_CLEANUP}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)