Skip to content

Commit

Permalink
👷Update CI
Browse files Browse the repository at this point in the history
Update CI to generate Documentation on main branch
  • Loading branch information
nadvitek committed Jan 15, 2024
1 parent a0b8ee5 commit c66b56c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Generate DocC
on:
push:
branches: [ main ]

jobs:
Build-Github-Actions:
runs-on: macos-latest

steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Documentation Generation
run: xcodebuild docbuild -scheme ACKategories -derivedDataPath ./docbuild -destination 'platform=iOS Simulator,OS=latest,name=iPhone 13 Pro'
- name: Copy DoccArchive into root
run: cp -R ./docbuild/Build/Products/Debug/ACKategories.doccarchive ./ACKategories.doccarchive
- name: Delete Build Files
run: rm -r ./docbuild


0 comments on commit c66b56c

Please sign in to comment.