Update Docker registry configuration in create-image workflow
Some checks failed
🤓 Individual Runners / Build 🐳 android (push) Failing after 1m32s
🤓 Individual Runners / Build 🐳 ios (push) Failing after 1m25s
🤓 Individual Runners / Build 🐳 linux-il2cpp (push) Failing after 1m13s
🤓 Individual Runners / Build 🐳 mac-mono (push) Failing after 1m14s
🤓 Individual Runners / Build 🐳 webgl (push) Failing after 1m25s
🤓 Individual Runners / Build 🐳 windows-mono (push) Failing after 1m25s

This commit is contained in:
Guillaume Langlois 2026-01-28 20:23:46 -05:00
parent 2b0839dcbe
commit e96de29f7b

View File

@ -33,7 +33,8 @@ jobs:
build-docker: build-docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
DOCKER_REGISTRY: docker.lakes.house/ DOCKER_REGISTRY_DOMAIN: gitea.lakes.house
DOCKER_REGISTRY: gitea.lakes.house/${{ gitea.repository_owner }}/${{ gitea.repository }}/
UNITY_VERSION: ${{ github.event.inputs.unity_version }} UNITY_VERSION: ${{ github.event.inputs.unity_version }}
GAMECI_OS: ubuntu GAMECI_OS: ubuntu
GAMECI_VERSION: 3 GAMECI_VERSION: 3
@ -55,12 +56,12 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Login to Docker Registry - name: Login to Gitea Docker Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ env.DOCKER_REGISTRY }} registry: ${{ env.DOCKER_REGISTRY_DOMAIN }}
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ gitea.actor }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.REGISTRY_TOKEN }}
- name: Get Unity Version - name: Get Unity Version
if: ${{ github.event.inputs.unity_version == '' }} if: ${{ github.event.inputs.unity_version == '' }}