Skip to content

Commit fa4b372

Browse files
author
Florencia Comuzzi
committed
export
1 parent 0fb8606 commit fa4b372

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/terraform.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,9 @@ jobs:
4747
if: github.event_name == 'pull_request'
4848
run: |
4949
if [ "${{ github.event.pull_request.base.ref }}" == "develop" ]; then
50-
ENV = "dev";
51-
export ENV;
50+
export ENV="dev";
5251
elif [ "${{ github.event.pull_request.base.ref }}" == "main" ]; then
53-
ENV = "prod";
54-
export ENV;
52+
export ENV="prod";
5553
else
5654
echo "unsupported environment";
5755
fi

0 commit comments

Comments
 (0)