From 3bc8343e8b75928f2de2afbdddd37b57d3ab92f9 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Sat, 15 Jun 2024 08:42:41 +0200 Subject: [PATCH] GHA: Set `convert_colors_with_editor_theme=true` in .import --- .github/workflows/gdextension.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/gdextension.yml b/.github/workflows/gdextension.yml index b8342db..cfcf47a 100644 --- a/.github/workflows/gdextension.yml +++ b/.github/workflows/gdextension.yml @@ -280,13 +280,14 @@ jobs: rm out/project.godot rm -rf out/.godot/ - - name: Change editor scale import settings + - name: Change editor icon import settings shell: bash run: | echo "--- Listing icons dir:" ls out/addons/limboai/icons/ echo "--- (end of listing)" sed -i 's|editor/scale_with_editor_scale=false|editor/scale_with_editor_scale=true|' out/addons/limboai/icons/*.import + sed -i 's|editor/convert_colors_with_editor_theme=false|editor/convert_colors_with_editor_theme=true|' out/addons/limboai/icons/*.import - name: Upload artifact uses: actions/upload-artifact@v4