From 276827b2674d6b248e293680aa7342fc8a566add Mon Sep 17 00:00:00 2001 From: Pavel Abramov Date: Mon, 31 Jul 2023 12:58:12 +0200 Subject: [PATCH] Add missing `working-directory` tag in `run-eden-test` action Since we are using `test.yml` as reusable workflow in EVE we clone eden repository in EVE folder and it causes problems with working directories and building and executing binaries. So we are using `working-directory:` and `path:` tags of GitHub actions with hard-coded `./eden` value to prevent any problems that might occur with resuing this workflow in EVE. Signed-off-by: Pavel Abramov --- .github/actions/run-eden-test/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/run-eden-test/action.yml b/.github/actions/run-eden-test/action.yml index 042650887..8847b88a8 100644 --- a/.github/actions/run-eden-test/action.yml +++ b/.github/actions/run-eden-test/action.yml @@ -30,12 +30,14 @@ runs: - name: Collect info if: failure() uses: ./eden/.github/actions/collect-info + working-directory: "./eden" - name: Collect logs if: always() uses: ./eden/.github/actions/publish-logs with: file_system: ${{ inputs.file_system }} tpm_enabled: ${{ inputs.tpm_enabled }} + working-directory: "./eden" - name: Clean up after test if: always() run: |