forked from stacksimplify/azure-devops-github-acr-aks-app1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-1.yml
39 lines (34 loc) · 1.06 KB
/
azure-pipelines-1.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
trigger:
- master
variables:
tag: '$(Build.BuildId)'
stages:
- stage: Build
displayName: Build Stage
jobs:
- job: build
displayName: build job
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@2
inputs:
containerRegistry: 'sharataksacr'
command: 'buildAndPush'
Dockerfile: '**/Dockerfile'
repository: 'customnginxapp1' #name of the image that we would like to give
tags: |
$(tag)
- bash: echo contents in system default working directory; ls -R $(System.DefaultWorkingDirectory)
- bash: before copying the content in build artifact directory; ls -R $(Build.ArtifactstagingDirectory)
- task: CopyFiles@2
inputs:
SourceFolder: '$(System.DefaultWorkingDirectory)/kube-manifests'
Contents: '**'
TargetFolder: '$(Build.ArtifactstagingDirectory)'
OverWrite: true
- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'kube-manifests'
publishLocation: 'Container'