Skip to content

Commit

Permalink
deployment to US and Europe simultaneously
Browse files Browse the repository at this point in the history
  • Loading branch information
robgutsopedra committed May 7, 2024
1 parent 2265b88 commit 89ded44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/manual-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
cat "deployment_envs/$app_name/dev.env" > $HOME/eu-$app_name-envfile.env
cat "deployment_envs/$app_name/region/$REGION/dev.env" > $HOME/$REGION-$app_name-envfile.env
fi
if [[ -f "deployment_envs/$app_name/common.env" ]] || [[ -f "deployment_envs/$app_name/region/$REGION/common.env" ]]; then
if [[ -f "deployment_envs/$app_name/common.env" ]]; then
echo "Please delete deployment_envs/$app_name/common.env or deployment_envs/$app_name/region/$REGION/common.env" >> $GITHUB_STEP_SUMMARY
fi
done
Expand All @@ -191,7 +191,7 @@ jobs:
cat "deployment_envs/dev.env" > $HOME/eu-envfile.env
cat "deployment_envs/region/$REGION/dev.env" > $HOME/$REGION-envfile.env
fi
if [[ -f "deployment_envs/common.env" ]] || [[ -f "deployment_envs/region/$REGION/common.env ]]; then
if [[ -f "deployment_envs/common.env" ]]; then
echo "Please delete deployment_envs/common.env or deployment_envs/region/$REGION/common.env" >> $GITHUB_STEP_SUMMARY
fi
fi
Expand Down

0 comments on commit 89ded44

Please sign in to comment.