From 975f66f2eebe9dadba04f275774d4ab83f74cf25 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:04:41 +0200 Subject: Adding upstream version 7.7.0+dfsg. Signed-off-by: Daniel Baumann --- .../azure/azcollection/release-pipelines.yml | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ansible_collections/azure/azcollection/release-pipelines.yml (limited to 'ansible_collections/azure/azcollection/release-pipelines.yml') diff --git a/ansible_collections/azure/azcollection/release-pipelines.yml b/ansible_collections/azure/azcollection/release-pipelines.yml new file mode 100644 index 000000000..adb69fb4d --- /dev/null +++ b/ansible_collections/azure/azcollection/release-pipelines.yml @@ -0,0 +1,29 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: + tags: + include: + - v*.*.* + +pr: none + +pool: + name: pool-ubuntu-2004 + +steps: +- script: | + pip install wheel + pip install ansible==v2.9.0 + ansible --version + displayName: 'install ansible' + +- script: | + ansible-galaxy collection build . + displayName: 'build collection' + +- script: | + ansible-galaxy collection publish *.tar.gz --api-key $(GALAXY_KEY) + displayName: 'publish collection' \ No newline at end of file -- cgit v1.2.3