Skip to content

Buildalon Unity Action

Actions
A Github Action to execute Unity Editor command line arguments
v1.0.3
Latest
Verified creator
Star (6)

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

Buildalon Unity Action

Discord marketplace validate

A Github Action to execute Unity Editor command line arguments.

How to use

Workflow

jobs:
  build:
    env:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        include:
          - os: ubuntu-latest
            build-target: StandaloneLinux64
          - os: windows-latest
            build-target: StandaloneWindows64
          - os: macos-13
            build-target: StandaloneOSX
    steps:
      - uses: buildalon/unity-action@v1
        name: '${{ matrix.build-target }}-Build'
        with:
          editor-path: 'path/to/your/unity/editor/installation'
          project-path: 'path/to/your/unity/project'
          log-name: '${{ matrix.build-target }}-Build'
          build-target: '${{ matrix.build-target }}'
          args: '-quit -nographics -batchmode'

Inputs

Input Description Required Default
editor-path The path to the unity editor installation you want to use to execute the arguments with. If UNITY_EDITOR_PATH environment variable is not set. env.UNITY_EDITOR_PATH
project-path The path to the unity project you want to use when executing arguments. If UNITY_PROJECT_PATH environment variable is not set, or if it isn't required for the command. env.UNITY_PROJECT_PATH
build-target The build target to use when executing arguments. false
args The arguments to use when executing commands to the editor. true -quit -batchmode -nographics
log-name The name of the log file to create when running the commands. false Unity-yyyyMMddTHHmmss

Buildalon Unity Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

A Github Action to execute Unity Editor command line arguments
v1.0.3
Latest

Verified

GitHub has manually verified the creator of the action as an official partner organization. For more info see About badges in GitHub Marketplace.

Buildalon Unity Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.