Skip to content

Commit 7db839a

Browse files
committed
Merge branch 'fix-e2e-script-fails' into fix-e2etest-imageb64
2 parents eb3ed64 + 0101fef commit 7db839a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/e2e-test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jobs:
4444
id: run_tests
4545
run: |
4646
if [ "${{ matrix.environment }}" = "canary" ]; then
47-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_CANARY }}"
47+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_CANARY }}'
4848
else
49-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_PRODUCTION }}"
49+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_PRODUCTION }}'
5050
fi
5151
5252
MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} surefire:test -pl :spring-app -DskipTests=false"
@@ -74,9 +74,9 @@ jobs:
7474
- name: "Start Application Locally"
7575
run: |
7676
if [ "${{ matrix.environment }}" = "canary" ]; then
77-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_CANARY }}"
77+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_CANARY }}'
7878
else
79-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_PRODUCTION }}"
79+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_PRODUCTION }}'
8080
fi
8181
8282
cd sample-code/spring-app
@@ -114,4 +114,4 @@ jobs:
114114
- type: "section"
115115
text:
116116
type: "plain_text"
117-
text: "${{ steps.run_tests.outputs.error_message }}"
117+
text: "${{ steps.run_tests.outputs.error_message }} "

0 commit comments

Comments
 (0)