1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 09:09:47 +00:00

Fix WINE & rcedit for Windows builds

Should probably be removed once https://github.com/abarichello/godot-ci/pull/149 is merged.
This commit is contained in:
Emmanouil Papadeas 2024-08-23 17:30:30 +03:00
parent ff2a5f8b33
commit cef4a5a943
2 changed files with 12 additions and 0 deletions

View file

@ -25,6 +25,12 @@ jobs:
container:
image: docker://barichello/godot-ci:4.3
steps:
- name: Setup WINE and rcedit 🍷
run: |
chown root:root -R ~
godot --headless --quit
echo 'export/windows/wine = "/usr/bin/wine64-stable"' >> ~/.config/godot/editor_settings-4.3.tres
echo 'export/windows/rcedit = "/opt/rcedit.exe"' >> ~/.config/godot/editor_settings-4.3.tres
- name: Checkout 🛎️
uses: actions/checkout@v4
with:

View file

@ -17,6 +17,12 @@ jobs:
container:
image: docker://barichello/godot-ci:4.3
steps:
- name: Setup WINE and rcedit 🍷
run: |
chown root:root -R ~
godot --headless --quit
echo 'export/windows/wine = "/usr/bin/wine64-stable"' >> ~/.config/godot/editor_settings-4.3.tres
echo 'export/windows/rcedit = "/opt/rcedit.exe"' >> ~/.config/godot/editor_settings-4.3.tres
- name: Checkout 🛎️
uses: actions/checkout@v4
with: