-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
56 lines (50 loc) · 1.39 KB
/
azure-pipelines.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Docker
# Build a Docker image
# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
trigger:
- main
pool:
name: 4ISADO
resources:
- repo: self
variables:
- name: 'AppVersion'
value: '0.3.1'
stages:
- stage: Build
displayName: Build image
jobs:
- job: Build
displayName: Build and Push
steps:
- task: Docker@2
displayName: Build and Push Image
inputs:
containerRegistry: 'Docker Hub - 4lch4'
repository: '4lch4/ansel'
command: 'buildAndPush'
tags: |
$(Build.BuildId)
$(AppVersion)
latest
- task: PublishPipelineArtifact@1
displayName: Publish Manifest
inputs:
targetPath: '$(Build.SourcesDirectory)/manifest.yml'
artifact: 'manifest'
publishLocation: 'pipeline'
- job: StatusReport
displayName: Status Report
dependsOn: 'Build'
pool: server
steps:
- task: InvokeRESTAPI@1
inputs:
connectionType: 'connectedServiceName'
serviceConnection: 'Discord Webhook Channel'
method: 'POST'
body: |
{
"content": "$(Build.BuildId) ⸺ $AGENT_JOBSTATUS",
"username": "4ISADO"
}