Fix n°3 - GithubAction

pull/1/head
Swissky 2021-02-16 19:05:41 +01:00
parent d4ea4744c1
commit 1812a6cdce
1 changed files with 5 additions and 3 deletions

View File

@ -25,13 +25,15 @@ jobs:
- name: Build SharpLAPS
run: |
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\"
.\MSBuild.exe $Env:GITHUB_WORKSPACE\SharpLAPS\SharpLAPS\SharpLAPS.csproj /property:Configuration=Release
dir $Env:GITHUB_WORKSPACE
dir $Env:GITHUB_WORKSPACE\SharpLAPS
.\MSBuild.exe $Env:GITHUB_WORKSPACE\SharpLAPS\SharpLAPS.csproj /property:Configuration=Release
# Upload Artifact to Github Action panel
- uses: actions/upload-artifact@master
with:
name: SharpLAPS
path: SharpLAPS\SharpLAPS\bin\Release\SharpLAPS.exe
path: SharpLAPS\bin\Release\SharpLAPS.exe
# Release
- uses: "marvinpinto/action-automatic-releases@latest"
@ -41,4 +43,4 @@ jobs:
prerelease: true
title: "Development Build"
files: |
./SharpLAPS/SharpLAPS/bin/Release/SharpLAPS.exe
./SharpLAPS/bin/Release/SharpLAPS.exe