We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d45655 commit 4715ccaCopy full SHA for 4715cca
actions/preview/action.yml
@@ -21,8 +21,8 @@ runs:
21
id: type
22
shell: bash
23
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' }}
+ IS_DEPLOYMENT: ${{ toJSON(github.event_name == 'pull_request' || github.ref == 'refs/heads/main') }}
+ IS_CLEANUP: ${{ toJSON(github.event_name == 'pull_request_target' && github.event.action == 'closed') }}
26
run: |
27
echo "IS_DEPLOYMENT=${IS_DEPLOYMENT}" >> $GITHUB_OUTPUT
28
echo "IS_CLEANUP=${IS_CLEANUP}" >> $GITHUB_OUTPUT
0 commit comments