Build test project

This commit is contained in:
Webber
2019-12-01 03:05:52 +01:00
committed by Webber Takken
parent dfd46a2bbe
commit be8195cadd
9 changed files with 583 additions and 264 deletions

View File

@@ -107,3 +107,30 @@ jobs:
with:
name: Test results (all modes)
path: ${{ steps.testRunner.outputs.artifactsPath }}
buildForWebGL:
name: Build for WebGL 🕸
runs-on: ubuntu-latest
steps:
# Checkout repository (required to test local actions)
- name: Checkout repository
uses: actions/checkout@v1
# Configure builder
- name: Build project
id: buildStep
uses: ./
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_PROJECT_PATH: test-project
BUILD_NAME: TestBuild
BUILD_TARGET: WebGL
BUILDS_PATH: builds
BUILD_COMMAND: ""
# Upload distributables
- name: Upload Build
uses: actions/upload-artifact@v1
with:
name: Build
path: ${{ steps.buildStep.outputs.allBuildsPath }}