Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
id: run_tests
run: |
if [ "${{ matrix.environment }}" = "canary" ]; then
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_CANARY }}"
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_CANARY }}'
else
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_PRODUCTION }}"
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_PRODUCTION }}'
fi

MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} surefire:test -pl :spring-app -DskipTests=false"
Expand Down Expand Up @@ -74,9 +74,9 @@ jobs:
- name: "Start Application Locally"
run: |
if [ "${{ matrix.environment }}" = "canary" ]; then
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_CANARY }}"
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_CANARY }}'
else
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_PRODUCTION }}"
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_PRODUCTION }}'
fi

cd sample-code/spring-app
Expand Down Expand Up @@ -114,4 +114,4 @@ jobs:
- type: "section"
text:
type: "plain_text"
text: "${{ steps.run_tests.outputs.error_message }}"
text: "${{ steps.run_tests.outputs.error_message }} "