Skip to content

Commit

Permalink
Create docc.yml (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLeif authored Nov 16, 2024
1 parent 0d6d019 commit 17851f1
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/docc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: docc
on:
push:
branches: [ "main" ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
pages:
environment:
name: github-pages
url: '${{ steps.deployment.outputs.page_url }}'
runs-on: macos-latest
steps:
- uses: swift-actions/setup-swift@v1
- name: git checkout
uses: actions/checkout@v3
- name: docbuild
run: >
sudo xcode-select -s /Applications/Xcode_16.0.app;
xcodebuild docbuild -scheme Navigation \
-derivedDataPath /tmp/docbuild \
-destination 'generic/platform=iOS';
$(xcrun --find docc) process-archive \
transform-for-static-hosting /tmp/docbuild/Build/Products/Debug-iphoneos/Navigation.doccarchive \
--output-path docs \
--hosting-base-path 'Navigation';
echo "<script>window.location.href +=
\"/documentation/navigation\"</script>" > docs/index.html;
- name: artifacts
uses: actions/upload-pages-artifact@v1
with:
path: docs
- name: deploy
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit 17851f1

Please sign in to comment.