„.gitea/workflows/build.yml“ ändern
Some checks failed
Export Game Job

This commit is contained in:
Snoweuph 2023-04-05 05:04:56 +00:00
parent a7ee811d85
commit 156fc83ab5

View file

@ -8,15 +8,16 @@ jobs:
steps: steps:
- name: checkout - name: checkout
uses: https://github.com/actions/checkout@v3.3.0 uses: https://github.com/actions/checkout@v3.3.0
- name: install wine - name: install packages
id: wine_install id: wine_install
run: | run: |
apt update -y apt update -y
apt install -y wine64 nodejs apt install -y wine64 nodejs
echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT
- name: download lib - name: download build libs
run: | run: |
mkdir -p /root/.local/share/godot/ mkdir -p /root/.local/share/godot/
mkdir -p ~/build
wget -nv https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_linux.x86_64.zip -O /root/.local/share/godot/godot.zip wget -nv https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_linux.x86_64.zip -O /root/.local/share/godot/godot.zip
wget -nv https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_export_templates.tpz -O /root/.local/share/godot/godot_templates.tpz wget -nv https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_export_templates.tpz -O /root/.local/share/godot/godot_templates.tpz
- name: export game - name: export game