From 82c1fe1c0ef1ea06d7d9c6f99af2195dfbd1abe5 Mon Sep 17 00:00:00 2001 From: "Evans Aboge (from Dev Box)" Date: Tue, 28 Jan 2025 19:55:52 +0300 Subject: [PATCH] Task: Bootstrap acr-push pipeline --- .azure-pipelines/acr-push.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .azure-pipelines/acr-push.yml diff --git a/.azure-pipelines/acr-push.yml b/.azure-pipelines/acr-push.yml new file mode 100644 index 0000000000..5ca954c8c7 --- /dev/null +++ b/.azure-pipelines/acr-push.yml @@ -0,0 +1,35 @@ +name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r) + +trigger: + branches: + include: + - dev + +pr: none + +variables: + buildConfiguration: 'Release' + buildPlatform: 'Any CPU' + +resources: + repositories: + - repository: 1ESPipelineTemplates + type: git + name: 1ESPipelineTemplates/1ESPipelineTemplates + ref: refs/tags/release + +extends: + template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates + parameters: + pool: + name: Azure-Pipelines-1ESPT-ExDShared + vmImage: windows-latest + stages: + - stage: Build + jobs: + - job: build + steps: + - task: UseDotNet@2 + displayName: 'Use .NET 8' + inputs: + version: 8.x \ No newline at end of file