GitHub: Trying to tweak the unity version to work.

This commit is contained in:
Lachee 2025-05-17 13:16:04 +10:00
parent 75416d3954
commit d96d96af6e

View File

@ -36,7 +36,10 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Get Unity Version - name: Get Unity Version
run: echo "UNITY_VERSION=$(cat versions.txt | grep ${{ matrix.platform }} | cut -d' ' -f2)" >> $GITHUB_ENV run: |
UNITY_VERSION=$(grep ${{ matrix.platform }} versions.txt | cut -d' ' -f2)
echo "UNITY_VERSION=$UNITY_VERSION" >> $GITHUB_ENV
echo "Unity version for ${{ matrix.platform }}: $UNITY_VERSION"
- name: Docker Build - name: Docker Build
run: .gitea/workflows/scripts/build-image.sh run: .gitea/workflows/scripts/build-image.sh