Skip to content

Commit

Permalink
Changing how we reference matrix variables. (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
mijpeterson authored Jun 6, 2024
1 parent 4b0d3f7 commit 5234a3f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ extends:
image: 'macOS-latest'
runtime: 'osx-arm64'
pool:
name: ${{ matrix.poolName }}
image: ${{ matrix.image }}
name: $(poolName)
image: $(image)
displayName: Build
steps:
- checkout: self
Expand All @@ -80,7 +80,7 @@ extends:
feedsToUse: select
vstsFeed: $(vstsFeedId)
includeNuGetOrg: false
arguments: '--runtime ${{ matrix.runtime }}'
arguments: '--runtime $(runtime)'

- task: DotNetCoreCLI@2
displayName: Test
Expand All @@ -93,10 +93,10 @@ extends:
inputs:
command: publish
projects: 'src/AzureAuth/AzureAuth.csproj'
arguments: '-p:Version=$(version) --configuration release --self-contained true --runtime ${{ matrix.runtime }} --output dist/${{ matrix.runtime }}'
arguments: '-p:Version=$(version) --configuration release --self-contained true --runtime $(runtime) --output dist/$(runtime)'

templateContext:
outputs:
- output: pipelineArtifact
path: dist/${{ matrix.runtime }}
artifact: azureauth-$(version)-${{ matrix.runtime }}
path: dist/$(runtime)
artifact: azureauth-$(version)-$(runtime)

0 comments on commit 5234a3f

Please sign in to comment.