Skip to content

Commit

Permalink
fix (github-actions.yml): stop using quotes when setting env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ksidirop-laerdal committed Mar 13, 2024
1 parent 666078d commit db29e0f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,14 @@ on:
- "**" # only trigger on branches not on tags

pull_request:
branches:
branches:
- "main"
- "develop"

jobs:
build:

runs-on: macos-14

env:
Test_Results_Folderpath: "$Build_Repository_Folderpath/TestResults"
Build_Artifacts_Folderpath: "$Build_Repository_Folderpath/Artifacts"

steps:

Expand All @@ -37,7 +33,7 @@ jobs:
shell: bash

- name: 'Add Artifacts folder as a local NuGet Source'
run: ' dotnet nuget add source "$Build_Artifacts_Folderpath" --name "LocalArtifacts" '
run: ' dotnet nuget add source "$Build_Repository_Folderpath/Artifacts" --name "LocalArtifacts" '
shell: bash

- name: 'List Nuget Sources'
Expand All @@ -59,9 +55,9 @@ jobs:
-m:1 \
-p:ShouldSkipMacCatalyst="true" \
\
-p:PackageOutputPath="$Build_Artifacts_Folderpath" \
-p:PackageOutputPath="$Build_Repository_Folderpath/Artifacts" \
-p:Laerdal_Gradle_Path="/usr/local/opt/gradle@7/bin/gradle" \
-p:Laerdal_Source_Branch="$Source_Branch_Fullpath" \
-p:Laerdal_Repository_Path="$Github_Repository_Path" \
-p:Laerdal_Github_Access_Token="$Components_Team_Github_Access_Token" \
-p:Laerdal_Test_Results_Folderpath="$Test_Results_Folderpath"
-p:Laerdal_Test_Results_Folderpath="$Build_Repository_Folderpath/TestResults"

0 comments on commit db29e0f

Please sign in to comment.