Skip to content

Build Apps

Build Apps #14

Workflow file for this run

name: Build Apps
on:
push:
branches:
pull_request:
workflow_dispatch:
jobs:
build-windows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
uses: game-ci/unity-builder@v2
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
targetPlatform: StandaloneWindows64
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: DLS-windows-64.zip
path: build
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
uses: game-ci/unity-builder@v2
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
with:
targetPlatform: StandaloneLinux64
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: DLS-Linux.zip
path: build