From 0f23c28b499bd3948dbb7d2d7f00d15fad23e384 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 24 Apr 2026 19:10:37 +0000 Subject: [PATCH] fix(ci): set datadir env var in serverlist-validate workflow The serverlist-validate.sh scripts use ${datadir} to cd into the correct directory, but the workflow never set this variable. This caused tail to fail with "No such file or directory" as it ran from the repo root instead of lgsm/data/. --- .github/workflows/serverlist-validate.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/serverlist-validate.yml b/.github/workflows/serverlist-validate.yml index c2605b062..f178753ee 100644 --- a/.github/workflows/serverlist-validate.yml +++ b/.github/workflows/serverlist-validate.yml @@ -6,6 +6,9 @@ on: permissions: contents: read +env: + datadir: lgsm/data + jobs: serverlist-validate: if: github.repository_owner == 'GameServerManagers'