Skip to content

Commit

Permalink
Create docs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
haren724 authored Jan 16, 2025
1 parent 1d4ea89 commit a242380
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Documentation

on:
push:
branches:
- main
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
docs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Pages
uses: actions/configure-pages@v1
- name: Set up Swift
uses: swift-actions/setup-swift@v1
with:
swift-version: '5.9'
- name: Generate Docs
uses: fwcd/swift-docc-action@v1
with:
target: UserDocumentation
output: ./docs
transform-for-static-hosting: 'true'
disable-indexing: 'true'
hosting-base-path: wallpaper-player-mac
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: docs

steps:
- name: Deploy Docs
uses: actions/deploy-pages@v1

0 comments on commit a242380

Please sign in to comment.