Fix typo (#110) #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |