Skip to content

Commit

Permalink
fix (github-actions.yml): fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ksidirop-laerdal committed Mar 13, 2024
1 parent cd0c142 commit a69c3fa
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
#
# https://docs.github.com/en/actions/migrating-to-github-actions/automated-migrations/migrating-from-azure-devops-with-github-actions-importer#environment-variable-mapping
#

name: Builder

Expand Down Expand Up @@ -30,22 +29,22 @@ jobs:
with:
fetch-depth: 1

- name: Setup Build Environment
run: Laerdal.SetupBuildEnvironment.sh
- name: 'Setup Build Environment'
run: '$Build_Repository_LocalPath/Laerdal.SetupBuildEnvironment.sh'
shell: bash

- name: Add Artifacts folder as a local NuGet Source
run: nuget sources add -name "Artifacts" -source "$Build_Artifact_Staging_Directory/Artifacts"
- name: 'Add Artifacts folder as a local NuGet Source'
run: ' nuget sources add -name "Artifacts" -source "$Build_Artifact_Staging_Directory/Artifacts" '
shell: bash
env:
Build_Artifact_Staging_Directory: ${{ runner.temp }}

- name: Build .Net8+ Bindings and McuMgr itself and announce new release in GitHub (if needed)
- name: 'Build .Net8+ Bindings and McuMgr itself and announce new release in GitHub (if needed)'
shell: bash
run: |
dotnet \
msbuild \
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 a69c3fa

Please sign in to comment.