fix: Add --disable-sandbox to DocC workflow for SwiftLint plugin compatibility

The SwiftLint build plugin downloads a binary artifact that cannot
execute inside the default sandbox on GitHub Actions macOS runners.
Adding --disable-sandbox allows the prebuild plugin to run.
This commit is contained in:
phranck
2026-01-30 15:56:15 +01:00
parent 92b093a63b
commit aefb4e19b4
+1 -1
View File
@@ -23,7 +23,7 @@ jobs:
- name: Build DocC documentation
run: |
swift package --allow-writing-to-directory docs-output \
swift package --disable-sandbox --allow-writing-to-directory docs-output \
generate-documentation \
--target TUIKit \
--output-path docs-output \