Compare commits

...

2 Commits
v0.5 ... v0.6

Author SHA1 Message Date
Dan Vicarel
0badec78bf GitHub Action now sets Pro licensing env vars as well 2020-01-12 17:51:45 +01:00
Dan Vicarel
c3b8284b44 docker.js now sets variables for Pro licenses as well 2020-01-12 17:51:45 +01:00
2 changed files with 6 additions and 0 deletions

View File

@@ -6,6 +6,9 @@ on:
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
jobs:
buildForAllPlatforms:

View File

@@ -25,6 +25,9 @@ export default class Docker {
--workdir /github/workspace \
--rm \
--env UNITY_LICENSE \
--env UNITY_EMAIL \
--env UNITY_PASSWORD \
--env UNITY_SERIAL \
--env UNITY_VERSION=${version} \
--env PROJECT_PATH=${projectPath} \
--env BUILD_TARGET=${platform} \