[FIX/MOD] Don't use full repo link
This commit is contained in:
parent
28a05ae650
commit
326302d185
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue