From f1f9ed581c36291c88fef7996a1b25e29606b6a7 Mon Sep 17 00:00:00 2001 From: Nik Ho Date: Wed, 10 Jul 2024 11:53:33 +1200 Subject: [PATCH] test on push --- .github/workflows/build-game-bridge.yaml | 50 +++++++++++++----------- 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/.github/workflows/build-game-bridge.yaml b/.github/workflows/build-game-bridge.yaml index d18734131e..6d06520ce3 100644 --- a/.github/workflows/build-game-bridge.yaml +++ b/.github/workflows/build-game-bridge.yaml @@ -4,31 +4,35 @@ name: Build Game Bridge on: - workflow_dispatch: - inputs: - ts_sdk_tag: - type: string - description: TS SDK version tag - required: true - game_engine: - type: choice - description: Game SDK to update - options: - - Unity - # - Unreal - # - Both - required: true - default: Unity - dry_run: - type: boolean - description: "(Optional) Dry run" - required: false - default: false + push: + # workflow_dispatch: + # inputs: + # ts_sdk_tag: + # type: string + # description: TS SDK version tag + # required: true + # game_engine: + # type: choice + # description: Game SDK to update + # options: + # - Unity + # # - Unreal + # # - Both + # required: true + # default: Unity + # dry_run: + # type: boolean + # description: "(Optional) Dry run" + # required: false + # default: false env: - TS_SDK_TAG: ${{ github.event.inputs.ts_sdk_tag }} - GAME_ENGINE: ${{ github.event.inputs.game_engine }} - DRY_RUN: ${{ github.event.inputs.dry_run }} + # TS_SDK_TAG: ${{ github.event.inputs.ts_sdk_tag }} + # GAME_ENGINE: ${{ github.event.inputs.game_engine }} + # DRY_RUN: ${{ github.event.inputs.dry_run }} + TS_SDK_TAG: 1.45.3-alpha.2 + GAME_ENGINE: Unity + DRY_RUN: false GH_TOKEN: ${{ secrets.TS_IMMUTABLE_SDK_GITHUB_TOKEN }} jobs: