forked from Budschie/Resource-Manager
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing issues with release github action
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,10 +16,10 @@ jobs: | |
runs-on: windows-latest | ||
|
||
env: | ||
Solution_Name: Resource Manager.sln # Replace with your solution name, i.e. MyWpfApp.sln. | ||
Solution_Name: "Resource Manager.sln" # Replace with your solution name, i.e. MyWpfApp.sln. | ||
#Test_Project_Path: your-test-project-path # Replace with the path to your test project, i.e. MyWpfApp.Tests\MyWpfApp.Tests.csproj. | ||
Wap_Project_Directory: Resource Manager # Replace with the Wap project directory relative to the solution, i.e. MyWpfApp.Package. | ||
Wap_Project_Path: Resource Manager\Resource Manager.csproj # Replace with the path to your Wap project, i.e. MyWpf.App.Package\MyWpfApp.Package.wapproj. | ||
Wap_Project_Directory: "Resource Manager" # Replace with the Wap project directory relative to the solution, i.e. MyWpfApp.Package. | ||
Wap_Project_Path: "Resource Manager/Resource Manager.csproj" # Replace with the path to your Wap project, i.e. MyWpf.App.Package\MyWpfApp.Package.wapproj. | ||
|
||
steps: | ||
- name: Checkout | ||
|
@@ -35,15 +35,15 @@ jobs: | |
|
||
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | ||
- name: Setup MSBuild.exe | ||
uses: microsoft/[email protected].4 | ||
uses: microsoft/[email protected].3 | ||
|
||
# Execute all unit tests in the solution | ||
# - name: Execute unit tests | ||
# run: dotnet test | ||
|
||
- name: Publish | ||
run: | | ||
dotnet publish ${{ env.Wap_Project_Path }} -o bin -c ${{ matrix.configuration }} | ||
dotnet publish "${{ env.Wap_Project_Path }}" -o bin -c ${{ matrix.configuration }} | ||
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact | ||
- name: Upload build artifacts | ||
|