Skip to content

Update GenreMDB property access levels (#108) #24

Update GenreMDB property access levels (#108)

Update GenreMDB property access levels (#108) #24

Workflow file for this run

name: DocC
on:
workflow_dispatch:
push:
branches:
- master
jobs:
Publish:
runs-on: macos-12
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Compile Documentation
run: swift package --allow-writing-to-directory ./docs generate-documentation --target TMDBSwift --disable-indexing --output-path ./docs --transform-for-static-hosting --hosting-base-path TheMovieDatabaseSwiftWrapper
- name: Configure git
run: |
git config --global user.email "tmdbswift+github-actions[bot]@users.noreply.github.com"
git config --global user.name "tmdb-bot"
- name: Commit Changes
run: |
git add docs/*
git commit -m "Updating Documentation"
git push origin master