diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa215ef..1eb083c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,10 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: +env: + GODOT_VERSION: "4.3" + GODOT_BUILD: "stable" + # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -30,12 +34,11 @@ jobs: - name: export game id: export # Use latest version (see releases for all versions) - uses: firebelley/godot-export@v5.2.0 + uses: firebelley/godot-export@v6.0.0 with: - # Defining all the required inputs - godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/4.2.2/Godot_v4.2.2-stable_linux.x86_64.zip - godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.2.2/Godot_v4.2.2-stable_export_templates.tpz - relative_project_path: ./ + godot_executable_download_url: https://github.com/godotengine/godot/releases/download/${{ env.GODOT_VERSION }}-${{ env.GODOT_BUILD }}/Godot_v${{ env.GODOT_VERSION }}-${{ env.GODOT_BUILD }}_linux.x86_64.zip + godot_export_templates_download_url: https://github.com/godotengine/godot/releases/download/${{ env.GODOT_VERSION }}-${{ env.GODOT_BUILD }}/Godot_v${{ env.GODOT_VERSION }}-${{ env.GODOT_BUILD }}_export_templates.tpz + relative_project_path: ./ - name: Move vercel.json run: cp ${GITHUB_WORKSPACE}/vercel.json ${{ steps.export.outputs.build_directory }}/vercel.json diff --git a/GravityGrapple.gd b/GravityGrapple.gd index cdf7950..a5f822f 100644 --- a/GravityGrapple.gd +++ b/GravityGrapple.gd @@ -1,5 +1,7 @@ extends RayCast2D +# random change to force a push + var active = false @export var force = -1000