Skip to content

Update README.md

Update README.md #147

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main # Set a branch name to trigger deployment
workflow_dispatch:
jobs:
deploy:
runs-on: macos-13
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: maxim-lobanov/setup-xcode@v1.1
with:
xcode-version: "15.0"
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Build
run: xcodebuild docbuild -scheme FluidStack -derivedDataPath .build -destination 'generic/platform=iOS'
- name: Generate
run: |
$(xcrun --find docc) process-archive \
transform-for-static-hosting ".build/Build/Products/Debug-iphoneos/FluidStack.doccarchive" \
--output-path public \
--hosting-base-path "FluidInterfaceKit"
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public