We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71cfcbd commit 21b76cfCopy full SHA for 21b76cf
1 file changed
.github/workflows/build.yml
@@ -178,8 +178,11 @@ jobs:
178
VERSIONS=$(echo "$VERSIONS_JSON" | jq -r '.[]' | xargs)
179
fi
180
181
- # Mount the stable source directory instead of the run-specific one
182
- ./build.sh --targets "$TARGET" ${VERSIONS:+--versions "$VERSIONS"} --extra-docker-opts "-v $SOURCES_DIR:/app/linux"
+ # Copy the stable source directory instead of the run-specific one
+ rm -rf linux
183
+ cp -r "$SOURCES_DIR" linux
184
+
185
+ ./build.sh --targets "$TARGET" ${VERSIONS:+--versions "$VERSIONS"}
186
187
# Use a run-specific output directory to avoid clashes
188
BUILD_OUTPUT="/home/runner/_shared/runs/$GITHUB_RUN_ID/build-output"
0 commit comments