Update BUILD_DIR path in sunnypilot workflow

Replaced hardcoded BUILD_DIR with a dynamic path using `github.workspace`. This enhances flexibility and ensures compatibility with different environments or runners.
This commit is contained in:
DevTekVE
2025-05-25 08:54:24 +02:00
parent f83f7647fb
commit 376971b616

View File

@@ -1,7 +1,7 @@
name: Build Model from Upstream
env:
BUILD_DIR: "/data/openpilot"
BUILD_DIR: ${{ github.workspace }}/build
OUTPUT_DIR: ${{ github.workspace }}/output
SCONS_CACHE_DIR: ${{ github.workspace }}/release/ci/scons_cache
UPSTREAM_REPO: "commaai/openpilot"