Browse Source

feat: Add support for 32-bit architecture

This commit adds support for 32-bit architecture by running the command "sudo dpkg --add-architecture i386" instead of installing libxml2-utils and jq.
pull/4298/head
Daniel Gibbs 2 years ago
parent
commit
8df9e5cbe8
  1. 2
      .github/workflows/update-check.yml

2
.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 run: wget https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/${GITHUB_REF#refs/heads/}/linuxgsm.sh; chmod +x linuxgsm.sh
- name: Install dependencies - name: Install dependencies
run: sudo apt-get install libxml2-utils jq run: sudo dpkg --add-architecture i386
- name: Grab server - name: Grab server
run: LGSM_GITHUBBRANCH="${GITHUB_REF#refs/heads/}" ./linuxgsm.sh ${{ matrix.shortname }}server run: LGSM_GITHUBBRANCH="${GITHUB_REF#refs/heads/}" ./linuxgsm.sh ${{ matrix.shortname }}server

Loading…
Cancel
Save