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 c68537c commit 0c71cf0Copy full SHA for 0c71cf0
.github/workflows/Deploy.yml
@@ -24,13 +24,13 @@ jobs:
24
id: set-options
25
run: |
26
# Deploy only if the PR was opened on the same repository
27
- if [[ ${{ github.repository }} == ${{ github.event.pull_request.head.repo.full_name }} ]]; then
+ if [[ "${{ github.repository }}" == "${{ github.event.pull_request.head.repo.full_name }}" ]]; then
28
DEPLOY="true"
29
else
30
DEPLOY="false"
31
fi
32
# Create previews only for pull requests
33
- if [[ ${{ github.event_name }} == "pull_request" ]]; then
+ if [[ "${{ github.event_name }}" == "pull_request" ]]; then
34
PREVIEW="previews/PR${PRNUM}"
35
36
PREVIEW=""
0 commit comments