We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd29617 commit c8fd0e5Copy full SHA for c8fd0e5
.github/workflows/deploy.yml
@@ -118,6 +118,8 @@ jobs:
118
run: |
119
if [[ "${{ env.BRANCH_NAME }}" == "main" ]]; then
120
IMAGE_TAG="latest"
121
+ elif [[ "${{ env.BRANCH_NAME }}" == "dev" ]]; then
122
+ IMAGE_TAG="dev"
123
elif [[ "${{ env.BRANCH_NAME }}" == "hotfix" ]]; then
124
IMAGE_TAG="hotfix"
125
else
@@ -235,7 +237,7 @@ jobs:
235
237
236
238
if [ -z "$openai_resource_name" ]; then
239
echo "No OpenAI resource found in resource group ${{ env.RESOURCE_GROUP_NAME }}."
- exit 1
240
+ exit 0
241
242
echo "OPENAI_RESOURCE_NAME=${openai_resource_name}" >> $GITHUB_ENV
243
echo "OpenAI resource name: ${openai_resource_name}"
0 commit comments