Skip to content

Merge pull request #426 from mattpolzin/feature/424/oas-3_1_2 #170

Merge pull request #426 from mattpolzin/feature/424/oas-3_1_2

Merge pull request #426 from mattpolzin/feature/424/oas-3_1_2 #170

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
container:
image: swift:5.10
steps:
- uses: actions/checkout@v5
- name: Build Docs
run: |
mkdir -p ./gh-pages
swift package --allow-writing-to-directory ./gh-pages/docs \
generate-documentation --include-extended-types \
--disable-indexing \
--output-path ./gh-pages/docs \
--transform-for-static-hosting \
--hosting-base-path OpenAPIKit \
--target OpenAPIKit
- name: Install rsync
run: |
apt-get update && apt-get install -y rsync
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.7.3
with:
folder: gh-pages
branch: gh-pages