[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: checkout:
description: Link to checkout from description: Link to checkout from
required: false required: false
default: https://git.telodendria.io/Telodendria/Cytoplasm default: Cytoplasm
compiler: compiler:
description: Compiler to use as CC description: Compiler to use as CC
required: false required: false
@ -24,13 +24,13 @@ runs:
run: | run: |
echo Downloading from "${{inputs.checkout}}".. echo Downloading from "${{inputs.checkout}}"..
echo We are on "${{runner.os}}", requested as CC 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 - name: Compiling Cytoplasm
id: compile id: compile
shell: bash shell: bash
run: | run: |
echo Compiling Cytoplasm... echo Compiling Cytoplasm...
cd Cytoplasm cd ${{inputs.checkout}}
export CC="${{inputs.compiler}}" export CC="${{inputs.compiler}}"
./configure --no-static && make ./configure --no-static && make
[ "${{inputs.install}}" = "true" ] && make install [ "${{inputs.install}}" = "true" ] && make install