fix: use correct host path for /apps mount in CI workflow
Pull Request / unit-tests (pull_request) Successful in 1m17s
Pull Request / analyze-bump-type (pull_request) Successful in 22s
Pull Request / build-and-deploy-ci (pull_request) Failing after 3m56s

The /apps:/apps mount was incorrect - the runner container has /var/lib/casaos/apps
mounted at /apps, but the job container needs the actual host path. Updated to use
/var/lib/casaos/apps:/apps so the job container can access CI compose files.
This commit is contained in:
2026-05-16 21:40:11 -07:00
parent a3e46ec83e
commit a5a5f41c16
+1 -1
View File
@@ -38,7 +38,7 @@ jobs:
image: docker.notsosm.art/euchre-camp/ci-base:latest image: docker.notsosm.art/euchre-camp/ci-base:latest
options: --user root options: --user root
volumes: volumes:
- /apps:/apps - /var/lib/casaos/apps:/apps
steps: steps:
- name: Checkout code - name: Checkout code