瀏覽代碼

Update web deploy CI to use Godot 3.3

Aaron Franke 4 年之前
父節點
當前提交
2ce76ff4e5
共有 2 個文件被更改,包括 3 次插入2 次删除
  1. 2 2
      .github/workflows/export_html5.yml
  2. 1 0
      misc/os_test/os_test.gd

+ 2 - 2
.github/workflows/export_html5.yml

@@ -5,14 +5,14 @@ on:
       - master
 
 env:
-  GODOT_VERSION: 3.2.3
+  GODOT_VERSION: 3.3
 
 jobs:
   export-html5:
     name: Export projects to HTML5 and deploy to GitHub Pages
     runs-on: ubuntu-20.04
     container:
-      image: barichello/godot-ci:3.2.3
+      image: barichello/godot-ci:3.3
     steps:
       - name: Checkout
         uses: actions/[email protected]

+ 1 - 0
misc/os_test/os_test.gd

@@ -95,6 +95,7 @@ func _ready():
 	][OS.screen_orientation])
 
 	add_header("Engine")
+	add_line("Version", Engine.get_version_info()["string"])
 	add_line("Command-line arguments", str(OS.get_cmdline_args()))
 	add_line("Is debug build", OS.is_debug_build())
 	add_line("Executable path", OS.get_executable_path())