Bump Dirkster.AvalonDock.Themes.VS2013 from 4.72.0 to 4.72.1 #198
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3.5.1 | |
- name: Setup MSBuild path | |
uses: microsoft/setup-msbuild@v1 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1.2.0 | |
- name: Restore NuGet Packages | |
run: nuget restore WinWeelay.sln | |
- name: Build Project | |
run: msbuild WinWeelay.sln /p:Configuration=Release | |
- name: Create Installer | |
uses: joncloud/makensis-action@v4 | |
with: | |
script-file: setup.nsi | |
- name: Upload Build Files | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: files | |
path: Release |