Skip to content

Commit

Permalink
DocC workflow experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmassicotte committed Mar 21, 2024
1 parent 3365a99 commit a17ec3f
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/docc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: DocC

on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'CODE_OF_CONDUCT.md'
- '.editorconfig'
- '.spi.yml'

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
deploy:
environment:
name: github-pages
url: $
env:
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
id: pages
- name: Build DocC
run: xcodebuild docbuild -scheme Edit -derivedDataPath /tmp/docbuild -destination 'generic/platform=macOS'
- name: Process Archive
run: xcrun docc process-archive transform-for-static-hosting /tmp/docbuild/Build/Products/Debug/Chime.doccarchive --output-path docs --hosting-base-path 'Chime'
- name: Add Redirect
run: echo "<script>window.location.href += \"/documentation/chime\"</script>" > docs/index.html
- name: Upload Docs
uses: actions/upload-pages-artifact@v3
with:
path: 'docs'
- name: Deploy
uses: actions/deploy-pages@v4
id: deployment

0 comments on commit a17ec3f

Please sign in to comment.