Skip to content

Merge pull request #25 from AdaEngine/xcode15.2_compile_errors #18

Merge pull request #25 from AdaEngine/xcode15.2_compile_errors

Merge pull request #25 from AdaEngine/xcode15.2_compile_errors #18

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- 'main'
permissions:
contents: write
jobs:
build-and-deploy-docs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build Documentation
run: swift package --allow-writing-to-directory ./docs generate-documentation --target AdaEngine --output-path ./docs --transform-for-static-hosting --hosting-base-path adaengine-docs
- name: Deploy to Github pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs
token: ${{ secrets.DOCS_ACCESS_TOKEN }}
repository-name: AdaEngine/adaengine-docs
single-commit: true
force: true