File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ jobs:
18
18
echo "event_name: ${{ github.event_name }}"
19
19
echo "ref: ${{ github.ref }}"
20
20
21
- if [[ ${{ github.event_name }} == 'push' ]]; then
21
+ if [[ " ${{ github.event_name }}" == 'push' ]]; then
22
22
echo "environment=production" >> $GITHUB_OUTPUT
23
23
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
25
25
echo "environment=staging" >> $GITHUB_OUTPUT
26
26
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
28
28
echo "environment=development" >> $GITHUB_OUTPUT
29
29
echo "url=https://test-github-features-staging.fly.dev" >> $GITHUB_OUTPUT
30
30
fi
You can’t perform that action at this time.
0 commit comments