Make sure env indeed doesn't work

This commit is contained in:
Webber 2019-12-10 22:12:12 +01:00
parent 1afe7852af
commit 9bcac2bef9
2 changed files with 4 additions and 8 deletions

View File

@ -28,15 +28,13 @@ jobs:
id: buildStep
uses: ./
env:
IMAGE_VERSION: ${{ matrix.version }}
IMAGE_TARGET: ${{ matrix.target }}
UNITY_PROJECT_PATH: test-project
BUILD_NAME: TestBuild
BUILD_TARGET: WebGL
BUILDS_PATH: builds
BUILD_METHOD: ""
with:
image_version: ${{ matrix.version }}
image_target: ${{ matrix.target }}
# Upload distributables
- name: Upload Build

View File

@ -1,7 +1,5 @@
ARG INPUT_IMAGE_VERSION=2019.0.00f0
ARG INPUT_IMAGE_TARGET=nothing
RUN echo ${INPUT_IMAGE_VERSION}
RUN echo ${INPUT_IMAGE_TARGET}
ENV INPUT_IMAGE_VERSION=2019.0.00f0
ENV INPUT_IMAGE_TARGET=nothing
FROM gableroux/unity3d:${INPUT_IMAGE_VERSION}-${INPUT_IMAGE_TARGET}
LABEL "com.github.actions.name"="Unity - Builder"