diff --git a/eng/pipelines/common/provision.yml b/eng/pipelines/common/provision.yml index 447798aef184..e77026bc7a3d 100644 --- a/eng/pipelines/common/provision.yml +++ b/eng/pipelines/common/provision.yml @@ -77,6 +77,7 @@ steps: displayName: 'Install the macOS certificate' inputs: certSecureFile: 'Components Mac Certificate.p12' + - template: sdk-unified/steps/mac-agent-info/v1.yml@xamarin-templates # Prepare Windows - ${{ if eq(parameters.platform, 'windows') }}: diff --git a/eng/pipelines/handlers.yml b/eng/pipelines/handlers.yml index 9041d23dbe40..e0f44f85fdfc 100644 --- a/eng/pipelines/handlers.yml +++ b/eng/pipelines/handlers.yml @@ -174,6 +174,8 @@ stages: displayName: Publish Artifacts (${{ BuildPlatform.artifact }}) inputs: ArtifactName: ${{ BuildPlatform.artifact }} + - ${{ if eq(BuildPlatform.name, 'macos') }}: + - template: sdk-unified/steps/mac-agent-info/v1.yml@xamarin-templates - stage: pack_net6 displayName: Pack .NET MAUI @@ -200,6 +202,8 @@ stages: poolName: ${{ PackPlatform.poolName }} provisionatorChannel: ${{ parameters.provisionatorChannel }} artifact: ${{ PackPlatform.artifact }} + - ${{ if eq(PackPlatform.name, 'macos') }}: + - template: sdk-unified/steps/mac-agent-info/v1.yml@xamarin-templates - stage: samples_net6 displayName: Build .NET MAUI Samples @@ -306,6 +310,8 @@ stages: displayName: publish artifacts inputs: ArtifactName: ${{ BuildPlatform.artifact }} + - ${{ if eq(BuildPlatform.name, 'macos') }}: + - template: sdk-unified/steps/mac-agent-info/v1.yml@xamarin-templates - template: common/security-compliance.yml