Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
edvilme committed Jan 31, 2025
1 parent 07458c9 commit 4405e9e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,16 @@ extends:
publishLocation: 'Container'
parallel: true

- {{ each _RID in ['x64', 'arm64'] }}
- job: OSX_latest_arm64
displayName: 'Mac OS (arm64)'
- {{ each _RID in ['x64', 'arm64'] }}:
- job: OSX_latest_${{ _RID }}
displayName: 'Mac OS (${{ _RID }})'
pool:
name: Azure Pipelines
image: 'macOS-latest'
os: macOS
variables:
- name: _RID
value: osx-arm64
value: osx-${{ _RID }})'
- name: _BuildConfig
value: Release
- name: _SignType
Expand Down Expand Up @@ -157,6 +157,6 @@ extends:
condition: and(eq(variables['system.pullrequest.isfork'], false), eq(variables['_BuildConfig'], 'Release'))
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
artifactName: 'drop-osx-arm64'
artifactName: 'drop-osx-${{ _RID }})'
publishLocation: 'Container'
parallel: true

0 comments on commit 4405e9e

Please sign in to comment.