diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index bf4d3083..beb1336e 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -6,7 +6,7 @@ name: Builder env: Build_Repository_LocalPath: ${{ github.workspace }} - Laerdal_Test_Results_Folderpath: '$Build_Repository_LocalPath/TestResults' + Laerdal_Test_Results_Folderpath: $Build_Repository_LocalPath/TestResults on: push: @@ -41,10 +41,11 @@ jobs: - name: 'Build .Net8+ Bindings and McuMgr itself and announce new release in GitHub (if needed)' shell: bash + working-directory: $Build_Repository_LocalPath run: | dotnet \ msbuild \ - "$Build_Repository_LocalPath/Laerdal.McuMgr.Builder.targets" \ + "Laerdal.McuMgr.Builder.targets" \ -m:1 \ -p:ShouldSkipMacCatalyst="true" \ -p:PackageOutputPath="$Build_Artifact_Staging_Directory/Artifacts/" \