-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use OTHER_DOCC_FLAGS flag to bypass process-archive call * add single script for static doc generation and post-processing * fix docc warnings
- Loading branch information
1 parent
b42788f
commit f35d281
Showing
7 changed files
with
31 additions
and
112 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
readonly DOCUMENTATION_TOP_LEVEL_SLUG=swift-upload-sdk | ||
readonly DOCUMENTATION_TARGET_SLUG=muxuploadsdk | ||
|
||
echo "▸ Creating docc static archive" | ||
./scripts/create-docc-archive.sh | ||
|
||
echo "▸ Preparing docc static archive for deployment" | ||
echo "▸ Top level slug: ${DOCUMENTATION_TOP_LEVEL_SLUG} Target slug: ${DOCUMENTATION_TARGET_SLUG}" | ||
|
||
./scripts/post-process-docc-archive.sh $DOCUMENTATION_TOP_LEVEL_SLUG $DOCUMENTATION_TARGET_SLUG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters