Skip to content

Build iOS

Build iOS #2

Workflow file for this run

name: Build iOS
on:
workflow_dispatch:
inputs:
notes:
type: string
description: Release Notes
upload-artifact:
description: "Get an artifact to download"
type: choice
default: 'false'
options:
- true
- false
release:
description: "Release Candidate"
type: choice
default: 'false'
options:
- true
- false
jobs:
build:
uses: starburst997/unity-github-actions/.github/workflows/ios.yml@v1
secrets: inherit
with:
runner: 'ubuntu-latest'
runner-extra: 'ubuntu-latest'
runner-sign: 'macos-latest'
il2cpp: '1'
library: 'Library-iOS'
artifact: 'build-ios'
s3-folder: 'ios'
discord: 'iOS'
timeout: 45
notes: ${{ inputs.notes }}
release: ${{ inputs.release }}
upload-artifact: ${{ inputs.upload-artifact }}