test #1
Workflow file for this run
This file contains hidden or 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
name: Deploy Docs | |
on: | |
push: | |
jobs: | |
build: | |
name: Build and test | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Docs | |
run: | | |
xcodebuild docbuild -scheme PowerSync -destination 'platform=macOS' -derivedDataPath ./DerivedData | |
xcrun docc process-archive transform-for-static-hosting \ | |
./DerivedData/Build/Products/Debug/PowerSync.doccarchive \ | |
--output-path ./docs |