Skip to content

Commit

Permalink
fix (github-actions.yml): fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
ksidirop-laerdal committed Mar 13, 2024
1 parent 834e275 commit 02955fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fetch-depth: 1

- name: 'Setup Build Environment'
run: 'chmod +x $Build_Repository_LocalPath/Laerdal.SetupBuildEnvironment.sh && $Build_Repository_LocalPath/Laerdal.SetupBuildEnvironment.sh'
run: ' chmod +x "$Build_Repository_LocalPath/Laerdal.SetupBuildEnvironment.sh" && "$Build_Repository_LocalPath/Laerdal.SetupBuildEnvironment.sh" '
shell: bash

- name: 'Add Artifacts folder as a local NuGet Source'
Expand All @@ -44,7 +44,7 @@ jobs:
run: |
dotnet \
msbuild \
'$Build_Repository_LocalPath/Laerdal.McuMgr.Builder.targets' \
"$Build_Repository_LocalPath/Laerdal.McuMgr.Builder.targets" \
-m:1 \
-p:ShouldSkipMacCatalyst="true" \
-p:PackageOutputPath="$Build_Artifact_Staging_Directory/Artifacts/" \
Expand Down

0 comments on commit 02955fa

Please sign in to comment.