Skip to content

0.11.0

0.11.0 #50

Workflow file for this run

name: Publish DocC
on:
release:
types: [published]
workflow_dispatch:
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
jobs:
documentation:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Generate DocC
run: |
mkdir -p docs
set -o pipefail && xcodebuild docbuild \
-scheme Orbit \
-destination "generic/platform=iOS" \
OTHER_DOCC_FLAGS="--transform-for-static-hosting --hosting-base-path orbit-swiftui --output-path docs" \
| xcpretty
- name: Deploy to Github Pages
uses: JamesIves/[email protected]
with:
branch: docc
folder: docs
target-folder: docs
git-config-name: Mobile Automation
git-config-email: [email protected]
commit-message: Updated DocC documentation for version ${{ github.event.release.tag_name }}