Fix outdated repository and homepage links in dockerfiles
parent
5c29e25c04
commit
65c2007661
|
|
@ -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
|
||||
if (!(fs.existsSync('C:/Program Files (x86)/Microsoft Visual Studio') &&
|
||||
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
|
||||
default location`);
|
||||
}
|
||||
|
|
@ -576,7 +576,7 @@ class Docker {
|
|||
throw new Error(`License File was corrupted, unable to locate serial`);
|
||||
}
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
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.color"="gray-dark"
|
||||
|
||||
LABEL "repository"="http://github.com/webbertakken/unity-actions"
|
||||
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
|
||||
LABEL "repository"="http://github.com/game-ci/unity-actions"
|
||||
LABEL "homepage"="http://github.com/game-ci/unity-actions"
|
||||
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
||||
|
||||
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.color"="gray-dark"
|
||||
|
||||
LABEL "repository"="http://github.com/webbertakken/unity-actions"
|
||||
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
|
||||
LABEL "repository"="http://github.com/game-ci/unity-actions"
|
||||
LABEL "homepage"="http://github.com/game-ci/unity-actions"
|
||||
LABEL "maintainer"="Webber Takken <webber@takken.io>"
|
||||
|
||||
ADD default-build-script c:\UnityBuilderAction
|
||||
|
|
|
|||
Loading…
Reference in New Issue