Skip to content

Commit

Permalink
test on push
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeSchwert committed Jul 9, 2024
1 parent 00c0bc2 commit f1f9ed5
Showing 1 changed file with 27 additions and 23 deletions.
50 changes: 27 additions & 23 deletions .github/workflows/build-game-bridge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit f1f9ed5

Please sign in to comment.