From f3500766e7450e1024a1ec9e46599fb249347d40 Mon Sep 17 00:00:00 2001 From: Kai <7630809+Kailai-Wang@users.noreply.github.com> Date: Mon, 30 Sep 2024 18:00:52 +0200 Subject: [PATCH] Fix path in vc-content GHA (#3106) --- .github/workflows/verify-correctness-of-vc-content.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/verify-correctness-of-vc-content.yml b/.github/workflows/verify-correctness-of-vc-content.yml index f39c35fcbd..d5b0d39cf6 100644 --- a/.github/workflows/verify-correctness-of-vc-content.yml +++ b/.github/workflows/verify-correctness-of-vc-content.yml @@ -9,6 +9,7 @@ on: default: "latest" schedule: - cron: '0 12 * * 3,6' # Run every Wednesday and Saturday at 12:00 UTC + env: DOCKER_TAG: ${{ github.event.inputs.docker-tag || 'latest' }} @@ -20,7 +21,6 @@ jobs: - name: Pull litentry image optionally run: | - docker pull parity/polkadot docker pull litentry/identity-worker:$DOCKER_TAG docker pull litentry/identity-cli:$DOCKER_TAG docker pull litentry/litentry-parachain:$DOCKER_TAG @@ -41,13 +41,13 @@ jobs: make launch-network-litentry - name: Run vc correctness tests + working-directory: ./tee-worker/identity/docker run: | - cd tee-worker/docker docker compose -f docker-compose.yml -f lit-vc-correctness-test.yml up --no-build --exit-code-from lit-vc-correctness-test lit-vc-correctness-test - name: Stop docker containers + working-directory: ./tee-worker/identity/docker run: | - cd tee-worker/docker docker compose -f docker-compose.yml -f lit-vc-correctness-test.yml stop - name: Collect Docker Logs