This commit is contained in:
milkwx3
2026-06-13 23:03:26 +03:00
parent 7ac375e5b4
commit dc5f4f7d91
+10 -3
View File
@@ -19,12 +19,19 @@ jobs:
cd makeheaders cd makeheaders
make make
cd .. cd ..
- name: Make compile script executable - name: Fetch libraries
run: chmod +x ${{ gitea.workspace }}/compile.sh run: |
cd ${{ gitea.workspace }}/src/libraries
git clone https://github.com/lsalzman/enet.git
git clone https://github.com/walterschell/Lua.git
git clone https://github.com/raysan5/raylib.git
git clone https://github.com/jbeder/yaml-cpp.git
cd ../..
- name: Compile - name: Compile
run: | run: |
chmod +x ${{ gitea.workspace }}/compile.sh
sh ${{ gitea.workspace }}/compile.sh sh ${{ gitea.workspace }}/compile.sh
zip -r release-linux.zip OUTPUT-Linux || true zip -r release-linux.zip OUTPUT-Linux || true
zip -r release-w64.zip OUTPUT-w64 || true zip -r release-w64.zip OUTPUT-w64 || true