From 651a527cdbde8714a455673498c29bfe1f7be797 Mon Sep 17 00:00:00 2001 From: Kwok He Chu <105217051+Kwok-he-Chu@users.noreply.github.com> Date: Fri, 5 Jan 2024 16:43:54 +0100 Subject: [PATCH] Fix E2E --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index d767738..7863e73 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -147,7 +147,7 @@ jobs: - name: Build authorisation-adjustment-example with Gradle run: cd authorisation-adjustment-example; ./gradlew build - name: Build authorisation-adjustment-example image - run: docker build -t authorisation-adjustment-example:latest authorisation-adjustment + run: docker build -t authorisation-adjustment-example:latest authorisation-adjustment-example - name: Start authorisation-adjustment container run: docker run --rm -d --name authorisation-adjustment-example -p 8080:8080 -e ADYEN_API_KEY="${{ secrets.ADYEN_API_KEY }}" -e ADYEN_MERCHANT_ACCOUNT=${{ secrets.ADYEN_MERCHANT_ACCOUNT }} -e ADYEN_CLIENT_KEY=${{ secrets.ADYEN_CLIENT_KEY }} -e ADYEN_HMAC_KEY=${{ secrets.ADYEN_HMAC_KEY }} authorisation-adjustment-example:latest - name: Run testing suite