Skip to content

Commit 9a3b6b5

Browse files
author
Florencia Comuzzi
committed
quotes
1 parent 1709e6b commit 9a3b6b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/terraform.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
id: init-pr
4747
if: github.event_name == 'pull_request'
4848
run: |
49-
if [ ${{ github.event.pull_request.base.ref }} == "develop" ]; then
49+
if [ "${{ github.event.pull_request.base.ref }}" == "develop" ]; then
5050
ENV = "dev";
5151
export ENV;
52-
elif [ ${{ github.event.pull_request.base.ref }} == "main" ]; then
52+
elif [ "${{ github.event.pull_request.base.ref }}" == "main" ]; then
5353
ENV = "prod";
5454
export ENV;
5555
else

0 commit comments

Comments
 (0)