mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-01-18 17:19:50 +00:00
[CI] Use WINE & recedit for Windows builds
This commit is contained in:
parent
434c5ca0c7
commit
8abdd6dd3b
10
.github/workflows/dev-desktop-builds.yml
vendored
10
.github/workflows/dev-desktop-builds.yml
vendored
|
@ -21,6 +21,16 @@ jobs:
|
||||||
container:
|
container:
|
||||||
image: docker://barichello/godot-ci:3.2.2
|
image: docker://barichello/godot-ci:3.2.2
|
||||||
steps:
|
steps:
|
||||||
|
- name: Setup WINE and rcedit 🍷
|
||||||
|
run: |
|
||||||
|
dpkg --add-architecture i386 && apt-get update && apt-get install -y wine-stable && apt-get install -y wine32
|
||||||
|
chown root:root -R ~
|
||||||
|
wget https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe
|
||||||
|
mkdir -v -p ~/.local/share/rcedit
|
||||||
|
mv rcedit-x64.exe ~/.local/share/rcedit
|
||||||
|
godot -q
|
||||||
|
echo 'export/windows/wine = "/usr/bin/wine"' >> ~/.config/godot/editor_settings-3.tres
|
||||||
|
echo 'export/windows/rcedit = "/github/home/.local/share/rcedit/rcedit-x64.exe"' >> ~/.config/godot/editor_settings-3.tres
|
||||||
- name: Checkout 🛎️
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue