abarichello / godot-ci

Docker image to export Godot Engine games. Templates for Gitlab CI and GitHub Actions to deploy to GitLab Pages/GitHub Pages/Itch.io.
https://hub.docker.com/r/barichello/godot-ci
MIT License
758 stars 133 forks source link

".../" in export command was causing issue in web build #130

Open adsau59 opened 10 months ago

adsau59 commented 10 months ago

Creating this issue in case someone else faces the same issue as I did

on this line ".../" was causing issue for me....

the error I was getting while exporting was

ERROR: Project export for preset "Web" failed.
   at: _fs_changed (editor/editor_node.cpp:994)

removing "../" fixed the issue for me

here is my working workflow yaml

I am using godot v4.2.1

mustachebutter commented 10 months ago

I noticed this as well. The build folders are actually made in the home directory, in the same level as the directory that has the project file so that's why in the example they changed the directory down one level and then has to use ../ to go up. Mainly just relative paths problems but thank you for the heads up