Fix outdated repository and homepage links in dockerfiles
parent
5c29e25c04
commit
65c2007661
|
|
@ -526,7 +526,7 @@ class Docker {
|
||||||
}
|
}
|
||||||
static generateWinSDKRegKeys(silent = false) {
|
static generateWinSDKRegKeys(silent = false) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
//Export registry keys that point to the location of the windows 10 sdk
|
// Export registry keys that point to the location of the windows 10 sdk
|
||||||
const exportWinSDKRegKeysCommand = 'echo Y| reg export "HKLM\\SOFTWARE\\WOW6432Node\\Microsoft\\Microsoft SDKs\\Windows\\v10.0" c:/regkeys/winsdk.reg';
|
const exportWinSDKRegKeysCommand = 'echo Y| reg export "HKLM\\SOFTWARE\\WOW6432Node\\Microsoft\\Microsoft SDKs\\Windows\\v10.0" c:/regkeys/winsdk.reg';
|
||||||
yield exec_1.exec(exportWinSDKRegKeysCommand, undefined, { silent });
|
yield exec_1.exec(exportWinSDKRegKeysCommand, undefined, { silent });
|
||||||
});
|
});
|
||||||
|
|
@ -563,7 +563,7 @@ class Docker {
|
||||||
//Note: When upgrading to Server 2022, we will need to move to just "program files" since VS will be 64-bit
|
//Note: When upgrading to Server 2022, we will need to move to just "program files" since VS will be 64-bit
|
||||||
if (!(fs.existsSync('C:/Program Files (x86)/Microsoft Visual Studio') &&
|
if (!(fs.existsSync('C:/Program Files (x86)/Microsoft Visual Studio') &&
|
||||||
fs.existsSync('C:/ProgramData/Microsoft/VisualStudio'))) {
|
fs.existsSync('C:/ProgramData/Microsoft/VisualStudio'))) {
|
||||||
throw new Error(`Visual Studio Installation not found at default location.
|
throw new Error(`Visual Studio not found at the default location.
|
||||||
Make sure the runner has Visual Studio installed in the
|
Make sure the runner has Visual Studio installed in the
|
||||||
default location`);
|
default location`);
|
||||||
}
|
}
|
||||||
|
|
@ -576,7 +576,7 @@ class Docker {
|
||||||
throw new Error(`License File was corrupted, unable to locate serial`);
|
throw new Error(`License File was corrupted, unable to locate serial`);
|
||||||
}
|
}
|
||||||
const endIndex = license.indexOf(endKey, startIndex);
|
const endIndex = license.indexOf(endKey, startIndex);
|
||||||
//We slice off the first 4 characters as they are garbage values
|
// Slice off the first 4 characters as they are garbage values
|
||||||
return Buffer.from(license.slice(startIndex, endIndex), 'base64').toString('binary').slice(4);
|
return Buffer.from(license.slice(startIndex, endIndex), 'base64').toString('binary').slice(4);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -6,8 +6,8 @@ LABEL "com.github.actions.description"="Build Unity projects for different platf
|
||||||
LABEL "com.github.actions.icon"="box"
|
LABEL "com.github.actions.icon"="box"
|
||||||
LABEL "com.github.actions.color"="gray-dark"
|
LABEL "com.github.actions.color"="gray-dark"
|
||||||
|
|
||||||
LABEL "repository"="http://github.com/webbertakken/unity-actions"
|
LABEL "repository"="http://github.com/game-ci/unity-actions"
|
||||||
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
|
LABEL "homepage"="http://github.com/game-ci/unity-actions"
|
||||||
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
||||||
|
|
||||||
ADD default-build-script /UnityBuilderAction
|
ADD default-build-script /UnityBuilderAction
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ LABEL "com.github.actions.description"="Build Unity projects for different platf
|
||||||
LABEL "com.github.actions.icon"="box"
|
LABEL "com.github.actions.icon"="box"
|
||||||
LABEL "com.github.actions.color"="gray-dark"
|
LABEL "com.github.actions.color"="gray-dark"
|
||||||
|
|
||||||
LABEL "repository"="http://github.com/webbertakken/unity-actions"
|
LABEL "repository"="http://github.com/game-ci/unity-actions"
|
||||||
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
|
LABEL "homepage"="http://github.com/game-ci/unity-actions"
|
||||||
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
||||||
|
|
||||||
ADD default-build-script c:\UnityBuilderAction
|
ADD default-build-script c:\UnityBuilderAction
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue