diff --git a/.github/workflows/dev-desktop-builds.yml b/.github/workflows/dev-desktop-builds.yml index 9cc75240e..ee19177d2 100644 --- a/.github/workflows/dev-desktop-builds.yml +++ b/.github/workflows/dev-desktop-builds.yml @@ -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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 377160584..152c617e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: