ci-test (working now) #2
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue