Skip to content

Commit

Permalink
Fixing issues with release github action
Browse files Browse the repository at this point in the history
  • Loading branch information
eBaeza committed Aug 25, 2024
1 parent d88e3c9 commit e251f6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e251f6e

Please sign in to comment.