From cb2de539359c8a11591367393322ee92d9ebfe85 Mon Sep 17 00:00:00 2001 From: happybell80 Date: Mon, 7 Jul 2025 23:42:48 +0900 Subject: [PATCH] Fix Docker permissions check: replace 'groups' with 'id' command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Synology NAS doesn't have 'groups' command - Use 'id' command instead which is available on all Unix systems - This fixes the deployment pipeline error 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0165ce2..1ce1e8b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -54,7 +54,7 @@ jobs: - name: Check Docker permissions run: | ssh -p ${{ secrets.NAS_PORT }} admin@${{ secrets.NAS_HOST }} \ - "ls -la /var/run/docker.sock && groups" + "ls -la /var/run/docker.sock && id" - name: Remote docker-compose up run: |