commit 1dd8e2b86814623039cd7eba412264be14b6a008 parent fdd6d7311a07321ef393cfc5981b31f7274bd5c8 Author: MikoĊaj Lenczewski <mikolaj.lenczewski308@gmail.com> Date: Fri, 12 Jun 2020 14:55:31 +0100 Added discord webhooks Diffstat:
| M | azure-pipelines.yml | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml @@ -37,11 +37,29 @@ steps: projects: '**/*.csproj' arguments: '--configuration Release' +- task: ado-discord-webhook@1 + inputs: + channelId: '720999005181575198' + webhookKey: 'SlpZzjgTkvvl5dL4Ih_woGvPZj4qc2dTp1Oey9FMKkbjq2mrKMpkzqvGk8TtPzba2iMn' + name: 'Azure Pipelines' + avatar: 'https://cdn.vsassets.io/content/icons/favicon.ico' + messageType: 'content' + content: 'Builds succeeded!' + - task: DotNetCoreCLI@2 inputs: command: 'test' projects: '**/*.csproj' +- task: ado-discord-webhook@1 + inputs: + channelId: '720999005181575198' + webhookKey: 'SlpZzjgTkvvl5dL4Ih_woGvPZj4qc2dTp1Oey9FMKkbjq2mrKMpkzqvGk8TtPzba2iMn' + name: 'Azure Pipelines' + avatar: 'https://cdn.vsassets.io/content/icons/favicon.ico' + messageType: 'content' + content: 'Tests succeeded!' + ## We only want to build the NetSharp project, not the NetSharpExamples project. ## Users should clone the repo to run the examples. - task: DotNetCoreCLI@2