We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3dee3 commit bc0bbc1Copy full SHA for bc0bbc1
.github/workflows/build-test-and-docs.yml
@@ -184,6 +184,7 @@ jobs:
184
swift build --target WinUIBackend -v \
185
-Xswiftc -emit-symbol-graph \
186
-Xswiftc -emit-symbol-graph-dir -Xswiftc symbol-graphs
187
+ shell: bash
188
189
- name: Upload WinUIBackend symbol graph
190
uses: actions/upload-artifact@v4
@@ -198,6 +199,9 @@ jobs:
198
199
runs-on: ${{ matrix.os }}
200
201
steps:
202
+ # The Ubuntu image comes with Swift, but it's installed as root and DocC
203
+ # doesn't like that, so we install our own copy as a user.
204
+ # Related issue: https://github.com/swiftlang/swift-docc/issues/1136
205
- name: Install Swift
206
uses: SwiftyLab/setup-swift@latest
207
with:
0 commit comments