From 08be70a06a976579c5b411c37928737c2b13d67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Meusel?= Date: Fri, 1 Nov 2024 14:31:24 +0100 Subject: [PATCH] Take 2 --- .github/actions/read-repo-config/action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/read-repo-config/action.yml b/.github/actions/read-repo-config/action.yml index 62e20d5b86..fb59a18bfc 100644 --- a/.github/actions/read-repo-config/action.yml +++ b/.github/actions/read-repo-config/action.yml @@ -8,10 +8,11 @@ name: Read Repository Configuration description: Reads the repository configuration file and makes it available as environment variables env: - READ_CONFIG_SCRIPT: ./src/scripts/read_repo_config.py + READ_CONFIG_SCRIPT: ${{ github.action_path }}/../../../src/scripts/read_repo_config.py runs: using: composite steps: - name: Read Repository Configuration into Environment Variables - run: python3 ${{ env.READ_CONFIG_SCRIPT }} all >> $GITHUB_ENV + run: ${{ env.READ_CONFIG_SCRIPT }} all >> $GITHUB_ENV + shell: python