Skip to content

Commit 973aa2a

Browse files
update workflows to use unity image from repository variable
1 parent a9db30f commit 973aa2a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/generate-unity-license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Generate Unity License File
1010
runs-on: ubuntu-latest
1111
container:
12-
image: "unityci/editor:ubuntu-6000.0.67f1-base-3.2.1"
12+
image: ${{ vars.UNITY_IMAGE }}
1313
steps:
1414
- uses: actions/checkout@v2
1515
- run: /opt/unity/Editor/Unity -nographics -batchmode -createManualActivationFile -logfile || true

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 5
1414
container:
15-
image: "unityci/editor:ubuntu-6000.0.67f1-base-3.2.1"
15+
image: ${{ vars.UNITY_IMAGE }}
1616
steps:
1717
- name: Checkout Repository
1818
uses: actions/checkout@v2

0 commit comments

Comments
 (0)