From 326302d185bdc02265e955d662ab843839f9ceff Mon Sep 17 00:00:00 2001 From: Load Accumulator Date: Thu, 2 Nov 2023 20:46:15 +0100 Subject: [PATCH] [FIX/MOD] Don't use full repo link --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index d4127c3..0264228 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: checkout: description: Link to checkout from required: false - default: https://git.telodendria.io/Telodendria/Cytoplasm + default: Cytoplasm compiler: description: Compiler to use as CC required: false @@ -24,13 +24,13 @@ runs: run: | echo Downloading from "${{inputs.checkout}}".. echo We are on "${{runner.os}}", requested as CC - git clone "${{inputs.checkout}}" + git clone https://git.telodendria.io/Telodendria/${{inputs.checkout}} - name: Compiling Cytoplasm id: compile shell: bash run: | echo Compiling Cytoplasm... - cd Cytoplasm + cd ${{inputs.checkout}} export CC="${{inputs.compiler}}" ./configure --no-static && make [ "${{inputs.install}}" = "true" ] && make install