Skip to content

Commit 0bce0e5

Browse files
authored
quote stuff (#31)
1 parent 9b203fc commit 0bce0e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
echo "event_name: ${{ github.event_name }}"
1919
echo "ref: ${{ github.ref }}"
2020
21-
if [[ ${{ github.event_name }} == 'push' ]]; then
21+
if [[ "${{ github.event_name }}" == 'push' ]]; then
2222
echo "environment=production" >> $GITHUB_OUTPUT
2323
echo "url=https://test-github-features.fly.dev" >> $GITHUB_OUTPUT
24-
elif [[ ${{ github.event_name }} == 'merge_group' ]]; then
24+
elif [[ "${{ github.event_name }}" == 'merge_group' ]]; then
2525
echo "environment=staging" >> $GITHUB_OUTPUT
2626
echo "url=https://test-github-features-staging.fly.dev" >> $GITHUB_OUTPUT
27-
elif [[ ${{ github.event_name }} == 'workflow_dispatch' ]]; then
27+
elif [[ "${{ github.event_name }}" == 'workflow_dispatch' ]]; then
2828
echo "environment=development" >> $GITHUB_OUTPUT
2929
echo "url=https://test-github-features-staging.fly.dev" >> $GITHUB_OUTPUT
3030
fi

0 commit comments

Comments
 (0)