Skip to content

Commit 494c79e

Browse files
committed
Make image variable
1 parent 5cafdc0 commit 494c79e

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

action/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
FROM gableroux/unity3d:2019.2.11f1
1+
ARG IMAGE
2+
FROM $IMAGE
23

34
LABEL "com.github.actions.name"="Unity - Request Activation File"
45
LABEL "com.github.actions.description"="Request the manual activation file for activating Unity personal"

action/entrypoint.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
#!/usr/bin/env bash
22

3-
# The container's unity version
4-
UNITY_VERSION=2019.2.11f1
3+
#
4+
# Display the unity version
5+
#
6+
7+
echo "Retrieving manual activation file for unity version \"$UNITY_VERSION\"."
8+
59

610
# Determine the expected file name and path
711
FILE_NAME=Unity_v$UNITY_VERSION.alf

0 commit comments

Comments
 (0)