Skip to content

Commit

Permalink
correction of service_url substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
andrptrc committed Dec 21, 2023
1 parent cd99fd5 commit dd20ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
uses: swiss-ai-center/common-code/.github/actions/prepare-kubernetes-configuration-files@main
with:
service-name: ${{ env.SERVICE_NAME }}
service-url: ${DEV_SERVICE_URL#*://}
service-url: ${{ env.DEV_SERVICE_URL }}
service-docker-image-tag: ${{ env.SERVICE_DOCKER_IMAGE_SHA_TAG }}
configuration-files-location: ./kubernetes
environment: development
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
uses: swiss-ai-center/common-code/.github/actions/prepare-kubernetes-configuration-files@main
with:
service-name: ${{ env.SERVICE_NAME }}
service-url: ${PROD_SERVICE_URL#*://}
service-url: ${{ env.PROD_SERVICE_URL }}
service-docker-image-tag: ${{ env.SERVICE_DOCKER_IMAGE_SHA_TAG }}
configuration-files-location: ./kubernetes
environment: production
Expand Down

0 comments on commit dd20ed3

Please sign in to comment.