From 993f2ee44c3b4db4006acf0def620cd7548724ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20M=C3=BCehlencord?= Date: Wed, 1 Apr 2026 08:52:19 +0200 Subject: [PATCH] fixed git_repository --- build-and-test/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build-and-test/action.yml b/build-and-test/action.yml index 2cb1b79..57049c2 100644 --- a/build-and-test/action.yml +++ b/build-and-test/action.yml @@ -49,8 +49,10 @@ runs: steps: - name: Clone repository shell: bash + env: + REPO_URL: ${{ inputs.git_repository }} run: | - git clone ${{ inputs.git_repository }} source + git clone "$REPO_URL" source cd source git checkout ${{ github.ref_name }}