image tags updated

This commit is contained in:
BLaZeKiLL
2020-10-24 12:13:29 +05:30
parent dc54ae10a5
commit 9269fba307
3 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -36,8 +36,8 @@ class ImageTag {
return {
generic: '',
webgl: 'webgl',
mac: 'mac',
windows: 'windows',
mac: 'mac-mono',
windows: 'windows-mono',
android: 'android',
ios: 'ios',
facebook: 'facebook',
@@ -47,7 +47,7 @@ class ImageTag {
static get targetPlatformToImageSuffixMap() {
const { generic, webgl, mac, windows, android, ios, facebook } = ImageTag.imageSuffixes;
// @see: https://docs.editor.com/ScriptReference/BuildTarget.html
// @see: https://docs.unity3d.com/ScriptReference/BuildTarget.html
return {
[Platform.types.StandaloneOSX]: mac,
[Platform.types.StandaloneWindows]: windows,
@@ -87,7 +87,7 @@ class ImageTag {
return this.customImage;
}
return `${image}:${tag}`;
return `${image}:${tag}-0`; // '0' here represents the docker repo version
}
}