[FIX/MOD] Don't use full repo link

This commit is contained in:
lda 2023-11-02 20:46:15 +01:00
parent 28a05ae650
commit 326302d185

View file

@ -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