From 33eaf4892fcd4276fd30abb72a609a2b953d6249 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 11 Jun 2023 00:59:54 +0100 Subject: [PATCH] feat: Add dependencies for server installation This commit adds the necessary dependencies to install a game server. The `update-check.yml` file has been updated to include the installation of `bsdmainutils`, `libsdl2-2.0-0:i386`, `libtinfo5:i386`, and `steamcmd`. --- .github/workflows/update-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-check.yml b/.github/workflows/update-check.yml index 901dc8b5a..92ebc73b3 100644 --- a/.github/workflows/update-check.yml +++ b/.github/workflows/update-check.yml @@ -23,7 +23,7 @@ jobs: run: wget https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${GITHUB_REF#refs/heads/}/linuxgsm.sh; chmod +x linuxgsm.sh - name: Install dependencies - run: sudo dpkg --add-architecture i386; sudo apt-get update + run: sudo dpkg --add-architecture i386; sudo apt update; sudo apt install bsdmainutils libsdl2-2.0-0:i386 libtinfo5:i386 steamcmd - name: Grab server run: LGSM_GITHUBBRANCH="${GITHUB_REF#refs/heads/}" ./linuxgsm.sh ${{ matrix.shortname }}server