Skip to content

Commit 8cf1c90

Browse files
BLaZeKiLLwebbertakken
authored andcommitted
docker repo updated
1 parent 644933c commit 8cf1c90

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

action/entrypoint.sh

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ FILE_NAME=Unity_v$UNITY_VERSION.alf
1212
FILE_PATH=$FILE_NAME
1313

1414
# Request the manual activation file for activating unity personal
15-
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \
16-
/opt/Unity/Editor/Unity \
17-
-batchmode \
18-
-nographics \
19-
-logFile /dev/stdout \
20-
-quit \
21-
-createManualActivationFile
15+
unity-editor \
16+
-batchmode \
17+
-nographics \
18+
-logFile /dev/stdout \
19+
-quit \
20+
-createManualActivationFile
2221

2322
# Catch exit code
2423
UNITY_EXIT_CODE=$?

action/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/model/image-tag.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { trimStart } from 'lodash-es';
22

33
class ImageTag {
44
static createForBase(version) {
5-
const repository = 'gableroux';
6-
const name = 'unity3d';
5+
const repository = 'unityci';
6+
const name = 'editor';
77
return new this({ repository, name, version });
88
}
99

src/model/image-tag.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('UnityImageVersion', () => {
3232
it('returns the correct version', () => {
3333
const image = ImageTag.createForBase('2099.1.1111');
3434

35-
expect(image.toString()).toStrictEqual(`gableroux/unity3d:2099.1.1111`);
35+
expect(image.toString()).toStrictEqual(`unityci/editor:2099.1.1111`);
3636
});
3737
});
3838
});

0 commit comments

Comments
 (0)