Inject args in build step directly
parent
a0ebb7760b
commit
edf5790a45
|
@ -12,8 +12,6 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
version: [2019.2.11f1, 2018.4.13f1]
|
version: [2019.2.11f1, 2018.4.13f1]
|
||||||
target: [webgl, android]
|
target: [webgl, android]
|
||||||
container:
|
|
||||||
options: --build-arg IMAGE_VERSION=${{ matrix.version }} --build-arg IMAGE_TARGET=${{ matrix.target }}
|
|
||||||
steps:
|
steps:
|
||||||
# Checkout repository (required to test local actions)
|
# Checkout repository (required to test local actions)
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
@ -35,6 +33,9 @@ jobs:
|
||||||
BUILD_TARGET: WebGL
|
BUILD_TARGET: WebGL
|
||||||
BUILDS_PATH: builds
|
BUILDS_PATH: builds
|
||||||
BUILD_METHOD: ""
|
BUILD_METHOD: ""
|
||||||
|
with:
|
||||||
|
args: IMAGE_VERSION=${{ matrix.version }} IMAGE_TARGET=${{ matrix.target }}
|
||||||
|
|
||||||
|
|
||||||
# Upload distributables
|
# Upload distributables
|
||||||
- name: Upload Build
|
- name: Upload Build
|
||||||
|
|
Loading…
Reference in New Issue