Merge pull request #145 from ironmansoftware/version-202510 #126
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: VS Code CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install .NET Core | |
| uses: actions/setup-dotnet@v3 | |
| with: | |
| dotnet-version: 6.0.x | |
| - name: Add msbuild to PATH | |
| uses: microsoft/[email protected] | |
| - uses: actions/cache@v4 | |
| id: cache | |
| with: | |
| path: ~/.nuget/packages | |
| key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
| - uses: actions/cache@v4 | |
| id: cache2 | |
| with: | |
| path: .\packages | |
| key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.config') }} | |
| - name: Restore | |
| shell: pwsh | |
| run: | | |
| dotnet restore PowerShellTools.sln | |
| nuget restore PowerShellTools.sln | |
| - name: Build Windows Form Designer | |
| shell: pwsh | |
| run: | | |
| msbuild PowerShellTools.sln -t:rebuild -p:Configuration=Release -p:Platform=x64 | |
| - name: Build | |
| shell: pwsh | |
| run: | | |
| Install-Module InvokeBuild -Scope CurrentUser -Force | |
| Install-Module PlatyPS -Scope CurrentUser -Force | |
| Invoke-Build -File .\vscode\vscode.build.ps1 | |
| env: | |
| AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
| AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
| AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: PowerShellTools | |
| path: vscode/powershellprotools/kit/powershellprotools-*.vsix |