commit 41f6ee4378cd2dc798f93b98c07aef2f4f419dae Author: Load Accumulator Date: Thu Nov 2 20:17:31 2023 +0100 [INIT] Add simple action diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..8b7b56c --- /dev/null +++ b/action.yml @@ -0,0 +1,20 @@ +name: Setups Cytoplasm +description: Setup Cytoplasm out + +runs: + using: composite + steps: + - name: Downloading Cytoplasm + id: download-cyto + shell: bash + run: | + echo Downloading Cytoplasm... + echo We are on "${{runner.os}}", requested "${{inputs.compiler}}" as CC + git clone https://git.telodendria.io/Telodendria/Cytoplasm + - name: Compiling Cytoplasm + id: compile-cyto + shell: bash + run: | + echo Compiling Cytoplasm... + cd Cytoplasm + ./configure --no-static && make && make install