We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29d9beb commit d1f8da6Copy full SHA for d1f8da6
.github/workflows/deploy_docc.yml
@@ -24,7 +24,15 @@ jobs:
24
25
- name: Build DocC
26
run: |
27
- ./archive-docc.sh
+ $(xcrun --find docc) convert \
28
+ --hosting-base-path "" \
29
+ --output-path Target.doccarchive \
30
+ Guide.docc
31
+
32
+ $(xcrun --find docc) process-archive transform-for-static-hosting \
33
+ Target.doccarchive \
34
35
+ --output-path ./docs
36
37
- name: Upload artifact
38
uses: actions/upload-pages-artifact@v3
archive-docc.sh
@@ -10,5 +10,5 @@ $DOCC_COMMAND convert Guide.docc \
10
--output-dir $DOCC_ARCHIVE
11
12
$DOCC_COMMAND process-archive transform-for-static-hosting \
13
- $DOCC_ARCHIVE \
14
--output-path ./docs \
+ $DOCC_ARCHIVE
0 commit comments