Added workflow to manually publish the extension #29
Workflow file for this run
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: Continuous Integration | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, edited] | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| env: | |
| Configuration: Release | |
| DeployExtension: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| - name: Build | |
| run: dotnet build | |
| - name: Test | |
| run: dotnet test tests/ProjectFilter.UnitTests |