Fixed typo in registry key location for Context Menu troubleshooting.md #25
Workflow file for this run
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: Validate Pull Request | |
on: | |
pull_request: | |
jobs: | |
validate-pull-request: | |
strategy: | |
matrix: | |
windows-version: | |
- windows-2019 | |
- windows-2022 | |
visual-studio-version: | |
- 16.11 | |
- 17.3 | |
# The GitHub Actions Windows images do not contain multiple versions of | |
# msbuild, so we need to exclude certain combinations. | |
exclude: | |
- windows-version: windows-2019 | |
visual-studio-version: 17.3 | |
- windows-version: windows-2022 | |
visual-studio-version: 16.11 | |
runs-on: ${{ matrix.windows-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
with: | |
vs-version: ${{ matrix.visual-studio-version }} | |
msbuild-architecture: x64 | |
- name: Build | |
run: ./SharpShellNativeBridge/build.ps1 | |
# Upload the artifacts folder. | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifacts | |
path: | | |
./SharpShellNativeBridge/artifacts/ |