Skip to content

Commit

Permalink
fixup!chore(github-action): build cnb image - fail late mode - add "
Browse files Browse the repository at this point in the history
  • Loading branch information
o-orand committed Sep 30, 2024
1 parent d09fe17 commit b5ee813
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-using-cnb-buildpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ jobs:
}
export APP="http://127.0.0.1:8080"
exit_status=0
! create_service=$(check_service "Create" "curl -sSLf -X PUT $APP/foo -d data=bar")
! get_service=$(check_service "Get" "curl -sSLf -X GET $APP/foo")
! delete_service=$(check_service "Delete" "curl -vvv -sSL -X DELETE $APP/foo")
! create_service="$(check_service "Create" "curl -sSLf -X PUT $APP/foo -d data=bar")"
! get_service="$(check_service "Get" "curl -sSLf -X GET $APP/foo")"
! delete_service="$(check_service "Delete" "curl -vvv -sSL -X DELETE $APP/foo")"
exit_status=$((create_service + get_service + delete_service))
Expand Down

0 comments on commit b5ee813

Please sign in to comment.