Skip to content

Commit

Permalink
kkk
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Mifsud committed Oct 30, 2023
1 parent aa2bb09 commit 85f592a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
check_endpoint=$(az ml online-endpoint show --n ${{ format('taxi{0}', needs.get-config.outputs.oep) }} -g ${{ needs.get-config.outputs.resource_group }} -w ${{ needs.get-config.outputs.aml_workspace }} --query name)
echo "CHECK_ENPOINT=$check_endpoint" >> $GITHUB_OUTPUT
echo ${{ env.name_enpoint }}
echo "${check_endpoint}"
echo "${{ env.name_enpoint }}"
echo $check_endpoint
if [ ${{ env.name_enpoint }} == "${check_endpoint}" ]
if [ "${{ env.name_enpoint }}" == $check_endpoint ]
then
echo "same"
else
Expand Down

0 comments on commit 85f592a

Please sign in to comment.