From a5c621fee899d9327feeb8a147c3859a8fcbe9ab Mon Sep 17 00:00:00 2001 From: rsonghuster Date: Fri, 19 Jan 2024 20:10:37 +0800 Subject: [PATCH] fix github actions about custom container --- .github/workflows/ci_with_docker_linux.yaml | 2 +- .github/workflows/ci_with_docker_macos.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_with_docker_linux.yaml b/.github/workflows/ci_with_docker_linux.yaml index fd0b50a..c0943b1 100644 --- a/.github/workflows/ci_with_docker_linux.yaml +++ b/.github/workflows/ci_with_docker_linux.yaml @@ -74,4 +74,4 @@ jobs: cd __tests__/e2e/custom && sudo ./run && cd - - name: test custom container run: | - cd custom-container && sudo ./run && cd - + cd __tests__/e2e/custom-container && sudo ./run && cd - diff --git a/.github/workflows/ci_with_docker_macos.yaml b/.github/workflows/ci_with_docker_macos.yaml index 2442c29..e51523d 100644 --- a/.github/workflows/ci_with_docker_macos.yaml +++ b/.github/workflows/ci_with_docker_macos.yaml @@ -73,4 +73,4 @@ jobs: cd __tests__/e2e/custom && ./run && cd - - name: test custom container run: | - cd custom-container && ./run && cd - + cd __tests__/e2e/custom-container && ./run && cd -