Merge pull request #3 from Rightpoint/2023improvements #6
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: Build DocC Documentation | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build-docc: | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#choosing-github-hosted-runners | |
# https://github.com/actions/virtual-environments/tree/main/images/macos | |
runs-on: macos-12 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- uses: fwcd/[email protected] | |
with: | |
target: MyLibraryName | |
output: ./docs | |
hosting-base-path: MyLibraryName | |
disable-indexing: "true" | |
transform-for-static-hosting: "true" | |
- name: Init new repo in dist folder and commit generated files | |
run: | | |
cd docs | |
git init | |
git add -A | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git commit -m 'deploy' | |
- name: Force push to destination branch | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: docs | |
force: true | |
directory: ./docs |