https://github.com/0xwdg/build-documentation
The Swift Package Documentation Generator GitHub Action generates documentation for a Swift package using docc.build-documentation test
https://github.com/0xwdg/build-documentation
actions documentation generator github github-actions package swift
Last synced: about 2 months ago
JSON representation
The Swift Package Documentation Generator GitHub Action generates documentation for a Swift package using docc.build-documentation test
- Host: GitHub
- URL: https://github.com/0xwdg/build-documentation
- Owner: 0xWDG
- Created: 2024-06-12T11:30:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-20T20:16:09.000Z (over 1 year ago)
- Last Synced: 2026-01-30T03:39:58.979Z (5 months ago)
- Topics: actions, documentation, generator, github, github-actions, package, swift
- Homepage:
- Size: 59.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Swift Package Documentation Generator
The Swift Package Documentation Generator GitHub Action generates documentation for a Swift package using docc.
```yaml
jobs:
Build-documentation:
runs-on: macos-latest
steps:
- name: Build documentation
uses: 0xWDG/build-documentation@main
```
|Parameter|Description|Default value|
|---|---|---|
|product|Product name|\_\_AUTO\_\_|
|temppath|Temporary Directory to write to|tmpdocs|
|branch|Branch to write to|documentation|
|ios|Should we build for iOS?|false|
```yaml
# .github/workflows/build-documentation.yml
name: build-documentation
on:
# Run on push to main branch
push:
branches:
- main
# Dispatch if triggered using Github (website)
workflow_dispatch:
jobs:
Build-documentation:
runs-on: macos-latest
steps:
- name: Build documentation
uses: 0xWDG/build-documentation@main
with:
product: Product-Name
temppath: tmpdocs
branch: documentation
iOS: false # Build for iOS
```
## Contact
๐ฆ [@0xWDG](https://bsky.app/profile/0xWDG.bsky.social)
๐ [mastodon.social/@0xWDG](https://mastodon.social/@0xWDG)
๐ฆ [@0xWDG](https://x.com/0xWDG)
๐งต [@0xWDG](https://www.threads.net/@0xWDG)
๐ [wesleydegroot.nl](https://wesleydegroot.nl)
๐ค [Discord](https://discordapp.com/users/918438083861573692)
Interested learning more about Swift? [Check out my blog](https://wesleydegroot.nl/blog/).