Skip to content

Fix typo in README.md (#51) #28

Fix typo in README.md (#51)

Fix typo in README.md (#51) #28

Workflow file for this run

name: Documentation
on:
push:
branches: [ master ]
jobs:
GenerateDocC:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Generate archive
run: |
xcodebuild docbuild \
-scheme 'OHMySQL' \
-derivedDataPath ./build
- name: Generate pages
run: |
$(xcrun --find docc) process-archive transform-for-static-hosting \
$(find ./build -type d -name '*.doccarchive') \
--hosting-base-path OHMySQL \
--output-path ./docs
- name: Deploy documentation to Github Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
keep_files: true