Skip to content

Commit 1f9cae3

Browse files
committed
more fixes
1 parent 2b1b2a4 commit 1f9cae3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
jobs:
2222
build:
2323
name: Unity Build 👽
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-22.04 # Asegúrate de usar Ubuntu 22.04 para el runner, el cual es coherente con la versión de Docker
2525
steps:
2626
# Checkout repository
2727
- name: Checkout repository
@@ -59,7 +59,8 @@ jobs:
5959
# Pull Unity image and Build project using Unity Builder
6060
- name: Build project
6161
run: |
62-
docker pull unityci/editor:ubuntu-2022.3.10f1-webgl-3.1.0 # Ensure the latest image is pulled
62+
# Asegúrate de que se descarga la imagen correcta
63+
docker pull unityci/editor:ubuntu-2022.3.10f1-webgl-3.1.0 # Actualiza esta línea si la versión de la imagen es diferente
6364
docker run --rm \
6465
-v $GITHUB_WORKSPACE:/workspace \
6566
-e UNITY_LICENSE=$UNITY_LICENSE \

0 commit comments

Comments
 (0)