Merge pull request #1171 from lepoco/development #24
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: wpf-ui-cd-extension | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: microsoft/setup-msbuild@v2 | |
with: | |
msbuild-architecture: x64 | |
- uses: nuget/setup-nuget@v2 | |
with: | |
nuget-api-key: ${{ secrets.NUGET_API_KEY }} | |
- name: Restore dependencies | |
run: nuget restore Wpf.Ui.sln | |
- name: Build the solution | |
run: msbuild src\Wpf.Ui.Extension\Wpf.Ui.Extension.csproj /t:Rebuild -p:Configuration=Release -p:RestorePackages=false -p:Platform="x64" -p:GITHUB_ACTIONS=True | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: wpf-ui-vs22-extension | |
path: src\Wpf.Ui.Extension\bin\x64\Release\Wpf.Ui.Extension.vsix |