From d1c2be8898e3fecaeebe782822e0b228808359a4 Mon Sep 17 00:00:00 2001 From: MrLetsplay Date: Tue, 4 Mar 2025 21:59:05 +0100 Subject: [PATCH] Update workflow --- .gitea/workflows/build_linux_docker.yml | 4 ++-- scripts/in-docker.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build_linux_docker.yml b/.gitea/workflows/build_linux_docker.yml index 63a5fb74..89923477 100644 --- a/.gitea/workflows/build_linux_docker.yml +++ b/.gitea/workflows/build_linux_docker.yml @@ -23,9 +23,9 @@ jobs: - name: Docker build run: > - bash -c "scripts/in-docker.sh bash -c 'dpkg --add-architecture i386 && apt update && apt install -y rpm wine mono-devel && + scripts/in-docker.sh bash -c 'dpkg --add-architecture i386 && apt update && apt install -y rpm wine mono-devel && yarn add matrix-seshat && yarn && yarn run fetch --noverify --cfgdir cringe && SQLCIPHER_BUNDLED=1 yarn run docker:build:native && - yarn run docker:build --linux rpm --linux deb --linux tar.xz --linux AppImage --win squirrel'" + yarn run docker:build --linux rpm --linux deb --linux tar.xz --linux AppImage --win squirrel' diff --git a/scripts/in-docker.sh b/scripts/in-docker.sh index 231ddd88..293b5958 100755 --- a/scripts/in-docker.sh +++ b/scripts/in-docker.sh @@ -10,7 +10,7 @@ fi # Taken from https://www.electron.build/multi-platform-build#docker # Pass through any vars prefixed with INDOCKER_, removing the prefix -docker run --rm -ti \ +docker run --rm \ --platform linux/amd64 \ --env-file <(env | grep -E '^INDOCKER_' | sed -e 's/^INDOCKER_//') \ --env ELECTRON_CACHE="/root/.cache/electron" \