Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
package

GitHub Action

unity-uwp-builder

v1.0.1

unity-uwp-builder

package

unity-uwp-builder

A GitHub Action to build Unity exported UWP projects

Installation

Copy and paste the following snippet into your .yml file.

              

- name: unity-uwp-builder

uses: RageAgainstThePixel/unity-uwp-builder@v1.0.1

Learn more about this action in RageAgainstThePixel/unity-uwp-builder

Choose a version

unity-uwp-builder

A GitHub Action to build Unity exported UWP projects.

Note

The main goal of this action to to take what is provided from Unity and package it to be directly uploaded to the Microsoft Store.

How to use

workflow

steps:
  - uses: RageAgainstThePixel/unity-uwp-builder@v1
    with:
      project-path: 'path/to/unity/build/output'
      configuration: 'Master'
      architecture: 'ARM64'
      package-type: 'upload'

inputs

name description required
project-path The directory that contains the exported visual studio project from Unity. true
configuration The configuration to use when building the visual studio project. Defaults to Master.
architecture The architecture to use when building the visual studio project. Can be: x86, x64, ARM, or ARM64. Defaults to ARM64.
package-type The type of package to generate. Can be: sideload or upload. Defaults to sideload.

outputs

  • executable: The path to the generated appx executable.
  • export-path: The path to the export directory.