Skip to content

Commit

Permalink
fixed?
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandramartinez committed Sep 19, 2024
1 parent e643847 commit 8e45d7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
run: |
appName=$(mvn help:evaluate -Dexpression=project.name -q -DforceStdout)
echo $appName
appId=$(anypoint-cli-v4 runtime-mgr:application:list --output json | jq '.[]|select(.name=="'"$appName"'").id')
appId=$(anypoint-cli-v4 runtime-mgr:application:list --output json | jq '.[]|select(.name=="'"$appName"'").id' | grep -Eo '[^"].+[^"]')
echo $appId
appUri=$(anypoint-cli-v4 runtime-mgr:application:describe --output json "'"$appId"'")
appUri=$(anypoint-cli-v4 runtime-mgr:application:describe --output json $appId | jq '.target.deploymentSettings.http.inbound.publicUrl')
echo $appUri

0 comments on commit 8e45d7d

Please sign in to comment.