Update Unity version and add some more VS setup (#98) #1
This file contains hidden or 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 Documentation (Standalone) | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - 'unity/DocFX/**' # Trigger on DocFX config changes only | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - 'unity/DocFX/**' | ||
| concurrency: | ||
| group: build-docs-standalone-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| build-docfx-standalone: | ||
| name: Build DocFX Documentation (Standalone) | ||
| uses: ./.github/workflows/build-docfx-api.yml | ||
|
Check failure on line 23 in .github/workflows/build-docs-standalone.yml
|
||
| with: | ||
| unity-build-completed: false # This is a standalone build | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||