From 2a7c1ca102fe29961564f210558c3c7abe06590e Mon Sep 17 00:00:00 2001 From: Santhosh Nair <913441@dadeschools.net> Date: Tue, 17 Oct 2023 16:12:46 +0000 Subject: [PATCH] Set up CI with Azure Pipelines for run Shellscript [skip ci] --- azure-pipelines.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..788e066 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,16 @@ +trigger: +- '*' # You can define triggers here to specify when the pipeline should run + +pool: + vmImage: 'ubuntu-latest' # Use the appropriate VM image + +steps: +- script: | + # Set the execution policy to allow script execution + chmod +x Scripts/build_and_push_services2acr.sh + + # Execute the script + ./Scripts/build_and_push_services2acr.sh + displayName: 'Run build_and_push_services2acr.sh' + + displayName: 'Run Script'