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 d57af24 commit 37c35a9Copy full SHA for 37c35a9
.github/actions/compile-docs/action.yml
@@ -75,14 +75,15 @@ runs:
75
run: |
76
set -eux
77
catalog="$DOCC_CATALOG"
78
- if [[ catalog == "" ]]; then
+ if [[ $catalog == "" ]]; then
79
catalog="$TARGET.docc"
80
mkdir "$catalog"
81
fi
82
symbol_graph_dir="$SYMBOL_GRAPH_DIR"
83
- if [[ symbol_graphs_dir == "" ]]; then
+ if [[ $symbol_graphs_dir == "" ]]; then
84
symbol_graph_dir="$TARGET-symbol-graphs"
85
86
+ echo $symbol_graph_dir
87
xcrun docc convert "$catalog" \
88
--additional-symbol-graph-dir $symbol_graph_dir \
89
--transform-for-static-hosting \
0 commit comments