Update web deploy CI to use Godot 3.3

This commit is contained in:
Aaron Franke
2021-04-24 04:12:04 -04:00
parent e5d829eb8f
commit 2ce76ff4e5
2 changed files with 3 additions and 2 deletions

View File

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

View File

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