Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4dd9c5a

Browse files
authoredAug 23, 2023
Add docc static site GitHub Pages deployment action (#89)
* Skip the index fixing step * Explicitly set the hosting base path * Remove duplicate docc archiving scripts * Add step to swap index.html * Index file cleanup * Copy theme-settings file * Limit deployments to main branch pushes * Make script reusable * Add link to guide * Limit pages deployments to main pushes
1 parent 16bcfe2 commit 4dd9c5a

10 files changed

+96
-159
lines changed
 

‎.github/workflows/docc-on-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
devdocs_bucket: upload-swift
4242
sdk_semantic_version: ${{ steps.version.outputs.version_name }}
4343
run: |
44-
.github/workflows/scripts/create-docc-archive.sh
44+
./scripts/create-docc-archive.sh
4545
- name: Update the docs AWS bucket
4646
run: |
47-
.github/workflows/scripts/upload-to-dev-docs.sh upload-swift ${{ steps.version.outputs.version_name }}
47+
./scripts/upload-to-dev-docs.sh upload-swift ${{ steps.version.outputs.version_name }}
4848
- name: Update the devdocs site
4949
run: |
5050
echo "${{ secrets.DOCS_REPO_PAT }}" | gh auth login --with-token
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Docc Static Site Deployment
2+
on:
3+
push:
4+
branches: ["main"]
5+
permissions:
6+
contents: read
7+
pages: write
8+
id-token: write
9+
concurrency:
10+
group: "pages"
11+
cancel-in-progress: true
12+
jobs:
13+
deploy-docs:
14+
environment:
15+
name: github-pages
16+
url: ${{ steps.deployment.outputs.page_url }}
17+
runs-on: macos-latest
18+
steps:
19+
- uses: actions/checkout@v3
20+
- uses: sersoft-gmbh/swifty-docs-action@v2
21+
with:
22+
output: docs
23+
use-xcodebuild: true
24+
xcodebuild-scheme: MuxUploadSDK
25+
xcodebuild-destination: generic/platform=iOS
26+
transform-for-static-hosting: true
27+
hosting-base-path: swift-upload-sdk
28+
- name: Post Process Docc Archive
29+
run: ./scripts/post-process-docc-archive-for-github-pages.sh swift-upload-sdk muxuploadsdk
30+
- uses: actions/upload-pages-artifact@v1
31+
with:
32+
path: docs
33+
- uses: actions/deploy-pages@v1.2.3
34+
id: deployment

‎.github/workflows/scripts/create-docc-archive.sh

-111
This file was deleted.

‎.github/workflows/scripts/index.html.template

-11
This file was deleted.

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Each video is uploaded to an authenticated [upload URL created by a trusted back
66
## Usage
77
To use this SDK, you'll need to add it as a dependency using either Swift Package Manager or Cocoapods.
88

9+
## Documentation
10+
A getting started guide can be found [here](https://docs.mux.com/guides/video/upload-video-directly-from-ios-or-ipados).
11+
912
### Server-Side: Create a Direct Upload
1013

1114
If you haven't yet done so, you must create an [access token](https://docs.mux.com/guides/system/make-api-requests#http-basic-auth) to complete these steps.

‎scripts/create-docc-archive.sh

+21-35
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,18 @@
22

33
readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2)
44

5-
readonly TOP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
5+
#readonly TOP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
6+
readonly TOP_DIR=`pwd`
67
readonly BUILD_DIR="${TOP_DIR}/.build"
78
readonly DOCUMENTATION_DIR="${BUILD_DIR}/docs"
8-
readonly XCCONFIG_DIR="${TOP_DIR}/FrameworkXCConfigs/"
9-
10-
readonly PROJECT_NAME="SwiftUploadSDKExample"
11-
readonly PROJECT_PATH="${TOP_DIR}/Example/SwiftUploadSDKExample/${PROJECT_NAME}.xcodeproj"
12-
readonly SCHEME="MuxUploadSDK"
13-
readonly BUILD_CONFIGURATION="Release"
14-
readonly BASE_XCCONFIG_FILENAME="Base"
15-
readonly XCCONFIG_FILENAME="Release-Production"
169

10+
readonly SCHEME=${target_scheme}
1711
readonly DOCC_ARCHIVE_NAME="${SCHEME}.doccarchive"
1812
readonly DOCC_ARCHIVE_PATH="${BUILD_DIR}/${DOCC_ARCHIVE_NAME}"
1913

20-
echo "YO PROJECT PATH IS ${PROJECT_PATH}"
21-
2214
# Subdirectory of the devdocs S3 bucket where SDK static docs are stored
2315
# in a directory corresponding to the SDKs version. Ex: "${DOCS_ROOT_DIR}/1.0.0"
24-
readonly DOCS_ROOT_DIR="spaces-ios"
16+
readonly DOCS_ROOT_DIR=${devdocs_bucket}
2517

2618
if ! command -v xcbeautify &> /dev/null
2719
then
@@ -35,19 +27,15 @@ rm -rf ${BUILD_DIR}
3527

3628
echo "▸ Using Xcode Version: ${XCODE}"
3729

38-
echo "▸ Building Documentation Catalog for ${SCHEME} located in ${PROJECT_PATH}"
30+
echo "▸ Building Documentation Catalog for ${SCHEME}"
3931

4032
mkdir -p $DOCUMENTATION_DIR
4133

42-
expanded_xcconfig_path="${XCCONFIG_DIR}/${XCCONFIG_FILENAME}.xcconfig"
43-
44-
# -xcconfig $expanded_xcconfig_path \
45-
xcodebuild docbuild -project $PROJECT_PATH \
46-
-scheme $SCHEME \
47-
-configuration $BUILD_CONFIGURATION \
34+
xcodebuild docbuild -scheme $SCHEME \
4835
-destination 'generic/platform=iOS' \
4936
-sdk iphoneos \
50-
-derivedDataPath "${DOCUMENTATION_DIR}" | xcbeautify \
37+
-derivedDataPath "${DOCUMENTATION_DIR}" \
38+
| xcbeautify
5139

5240
cd ${BUILD_DIR}
5341

@@ -58,23 +46,15 @@ docc_built_archive_path=$(find docs -type d -name "${DOCC_ARCHIVE_NAME}")
5846

5947
if [ -z "${docc_built_archive_path}" ]
6048
then
61-
echo -e "\033[1;31m ERROR: Failed to locate Documentation Archive \033[0m"
49+
echo -e "\033[1;31m ERROR: Failed to locate Documentation Archive \033[0m"
6250
exit 1
6351
else
6452
echo "▸ Located documentation archive at ${docc_built_archive_path}"
65-
mv ${docc_built_archive_path} ${BUILD_DIR}
53+
#mv ${docc_built_archive_path} ${BUILD_DIR}
54+
cp -r ${docc_built_archive_path} ${BUILD_DIR}
6655
zip -qry "${DOCC_ARCHIVE_NAME}.zip" "${DOCC_ARCHIVE_NAME}"
6756
fi
6857

69-
expanded_base_xcconfig_path="${XCCONFIG_DIR}/${BASE_XCCONFIG_FILENAME}.xcconfig"
70-
71-
# Locates the SDK marketing version and extracts it to a variable
72-
#
73-
# Uses the substitute (s) command to lines containing 'MARKETING_VERSION = '
74-
# substring then captures everything on that line after the subscript (\(.*\))
75-
# then prints the first such match
76-
sdk_semantic_version="$(sed -n 's/MARKETING_VERSION = \(.*\)/\1/p' $expanded_base_xcconfig_path)"
77-
7858
# When deploying a new version the contents of the latest subdirectory
7959
# gets replaced with the generated documentation from the new version
8060
latest_subdirectory_name="latest"
@@ -93,18 +73,24 @@ $(xcrun --find docc) process-archive transform-for-static-hosting "${source_arch
9373
--output-path "${output_path}" \
9474
--hosting-base-path "${hosting_base_path}"
9575

96-
# Replace index.html with a redirect to documentation/muxspaces/
97-
sed -e "s/__VERSION__/${sdk_semantic_version}/" "${TOP_DIR}/scripts/index.html.template" > ${output_path}/index.html
76+
# Replace index.html with a redirect to documentation/your-lib-name/ for your version
77+
sed -e "s/__VERSION__/${sdk_semantic_version}/g" \
78+
-e "s/__SLUG__/${DOCS_ROOT_DIR}/g" \
79+
"scripts/docc-files/index.html.template" > ${output_path}/index.html
9880

9981
mkdir -p $DOCS_ROOT_DIR
10082

10183
mkdir -p $DOCS_ROOT_DIR/$latest_subdirectory_name
10284

103-
# Replace index.html with a redirect to documentation/muxspaces/
104-
sed -e "s/__VERSION__/${latest_subdirectory_name}/" "${TOP_DIR}/scripts/index.html.template" > $DOCS_ROOT_DIR/${latest_subdirectory_name}/index.html
85+
# Replace index.html with a redirect to documentation/your-lib-name/ for 'latest'
86+
sed -e "s/__VERSION__/${latest_subdirectory_name}/" \
87+
-e "s/__SLUG__/${DOCS_ROOT_DIR}/g" \
88+
"scripts/docc-files/index.html.template" > $DOCS_ROOT_DIR/${latest_subdirectory_name}/index.html
10589

90+
# For the record this overwrites our faked index.html but that helps it work
10691
cp -r ./$output_path/. ./$DOCS_ROOT_DIR/$latest_subdirectory_name
10792

93+
10894
mv $output_path $DOCS_ROOT_DIR
10995

11096
zip -qry "${DOCS_ROOT_DIR}.zip" "${DOCS_ROOT_DIR}"
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!DOCTYPE html>
2+
<meta charset="utf-8">
3+
<!-- This file is intended to replace the automatically generated index.html so it redirects to the "real" homepage for __SLUG__ docs -->
4+
<title>Redirecting to __SLUG__ homepage</title>
5+
<meta http-equiv="refresh" content="0; URL=/__SLUG__/documentation/__TARGET__/">
6+
<link rel="canonical" href="/__SLUG__/documentation/__TARGET__/"/>
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/bin/bash
2+
3+
if [ -z $1 ]
4+
then
5+
echo -e "\033[1;31m ERROR: this script requires a repository name parameter. \033[0m"
6+
exit $E_MISSING_POS_PARAM
7+
fi
8+
9+
if [ -z $2 ]
10+
then
11+
echo -e "\033[1;31m ERROR: this script requires a target name parameter. \033[0m"
12+
exit $E_MISSING_POS_PARAM
13+
fi
14+
15+
echo "▸ Adding redirect from the docc static archive root"
16+
17+
output_path="docs"
18+
19+
sed -e "s/__SLUG__/${1}/g" \
20+
-e "s/__TARGET__/${2}/g" \
21+
"scripts/docc-files/index.html.template" > ${output_path}/index.html
22+
23+
echo "▸ Rewrote ${output_path}/index.html to:"
24+
25+
cat ${output_path}/index.html
26+
27+
echo "▸ Copy theme settings to static archive"
28+
29+
cp scripts/docc-files/theme-settings.json docs
File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.