|
37 | 37 | with:
|
38 | 38 | path: tools
|
39 | 39 | key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
|
| 40 | + - |
| 41 | + name: Install .NET SDK 6.0.x |
| 42 | + uses: actions/setup-dotnet@v1 |
| 43 | + with: |
| 44 | + dotnet-version: '6.0.x' |
| 45 | + include-prerelease: true |
40 | 46 | -
|
41 | 47 | name: '[Prepare]'
|
42 | 48 | if: steps.cache-cake.outputs.cache-hit != 'true'
|
|
66 | 72 | with:
|
67 | 73 | path: tools
|
68 | 74 | key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
|
| 75 | + - |
| 76 | + name: Install .NET SDK 2.1.x |
| 77 | + uses: actions/setup-dotnet@v1 |
| 78 | + with: |
| 79 | + dotnet-version: '2.1.x' |
| 80 | + - |
| 81 | + name: Install .NET SDK 6.0.x |
| 82 | + uses: actions/setup-dotnet@v1 |
| 83 | + with: |
| 84 | + dotnet-version: '6.0.x' |
| 85 | + include-prerelease: true |
69 | 86 | -
|
70 | 87 | name: '[Build Documentation]'
|
71 | 88 | shell: pwsh
|
|
79 | 96 | arguments: --url-ignore /api/ --allow-hash-href --assume-extension --disable-external
|
80 | 97 | -
|
81 | 98 | name: '[Remark Lint]'
|
82 |
| - uses: reviewdog/action-remark-lint@v4 |
| 99 | + uses: reviewdog/action-remark-lint@v5 |
83 | 100 | with:
|
84 | 101 | github_token: ${{ secrets.GITHUB_TOKEN }}
|
85 | 102 | reporter: github-pr-check
|
@@ -111,6 +128,17 @@ jobs:
|
111 | 128 | with:
|
112 | 129 | path: tools
|
113 | 130 | key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
|
| 131 | + - |
| 132 | + name: Install .NET SDK 2.1.x |
| 133 | + uses: actions/setup-dotnet@v1 |
| 134 | + with: |
| 135 | + dotnet-version: '2.1.x' |
| 136 | + - |
| 137 | + name: Install .NET SDK 6.0.x |
| 138 | + uses: actions/setup-dotnet@v1 |
| 139 | + with: |
| 140 | + dotnet-version: '6.0.x' |
| 141 | + include-prerelease: true |
114 | 142 | -
|
115 | 143 | name: '[Publish Documentation]'
|
116 | 144 | if: ${{ github.event_name == 'push' }}
|
|
0 commit comments