Fixes a crash when trying to access a SpriteComponent
's .sprite()
#473
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iOS-tvOS | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
Build_Test-macOS-iOS: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode version | |
run: sudo xcode-select -s '/Applications/Xcode_15.4.app/Contents/Developer' | |
- name: Swift Version | |
run: swift --version | |
- name: Build iOS using Xcode | |
run: xcodebuild -scheme GateEngine -destination generic/platform=iOS | |
- name: Build tvOS using Xcode | |
run: xcodebuild -scheme GateEngine -destination generic/platform=tvOS |