Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Mifsud committed Oct 30, 2023
1 parent 85f592a commit 7098257
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ 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
name_point=$(${{ env.name_enpoint }})
echo "${{ env.name_enpoint }}"
echo $name_point
echo $check_endpoint
if [ "${{ env.name_enpoint }}" == $check_endpoint ]
if [[ "$name_point" == "$check_endpoint" ]]
then
echo "same"
else
Expand Down

0 comments on commit 7098257

Please sign in to comment.