Change workflow and variables to allow multiple build jobs

This commit is contained in:
Webber
2019-12-14 17:12:13 +01:00
committed by Webber Takken
parent e9496f5ba2
commit 9a21280b09
4 changed files with 57 additions and 39 deletions

View File

@@ -1,17 +1,16 @@
#!/usr/bin/env bash
#
# Set project path
# Set project path (configured with "with: { project: somepath }"
#
UNITY_PROJECT_PATH=$GITHUB_WORKSPACE/$UNITY_PROJECT_PATH
UNITY_PROJECT_PATH=$GITHUB_WORKSPACE/$PROJECT_PATH
#
# Set the name for the build
#
if [ -z "$BUILD_NAME" ]; then
BUILD_NAME=buildName
BUILD_NAME="build-$(date '+%F-%H%M')"
fi
#