Bump version to 1.2.5.0 #4
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: Automatic Build on Tag update | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
# - name: Setup .NET | |
# uses: actions/[email protected] | |
# with: | |
# dotnet-version: 4.8 | |
- name: Setup MSBuild | |
uses: microsoft/[email protected] | |
- name: Setup NuGet | |
uses: nuget/[email protected] | |
- name: Restore NuGet Packages | |
run: nuget restore QobuzDownloaderX.sln | |
- name: Build Solutions | |
run: | | |
msbuild.exe QobuzDownloaderX.sln /p:platform="Any CPU" /p:configuration="Release" | |
- name: Upload artifacts | |
uses: actions/[email protected] | |
with: | |
name: QBDLX-MOD_${{ github.event.release.tag_name }} | |
path: QobuzDownloaderX\bin\Release |