Merge pull request #117 from nowsprinting/chore/comments_for_awaitable #10
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
# Copyright (c) 2023-2024 Koji Hasegawa. | |
# This software is released under the MIT License. | |
name: docfx | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: {} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
docfx: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: sator-imaging/docfx-pages@v1 | |
with: | |
app_name: 'Test Helper' | |
site_title: 'Test Helper : Provides custom attributes, comparers, and constraints useful for testing with Unity Test Framework' | |
site_footer: 'Copyright (c) 2023-2024 Koji Hasegawa' | |
class_members: 'separatePages' | |
site_logo: 'images/unity/made-with-unity.svg' | |
site_favicon: 'images/wikimedia-commons/logo-csharp-recolor.svg' | |
id: deployment |