diff --git a/build/build.yml b/build/build.yml new file mode 100644 index 0000000..d6d4a17 --- /dev/null +++ b/build/build.yml @@ -0,0 +1,22 @@ +# 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: +- main + +pool: + vmImage: 'macos-latest' + +steps: + +- task: CmdLine@2 + inputs: + script: 'build/build.sh' + +- task: PublishPipelineArtifact@1 + inputs: + targetPath: 'output' + artifact: 'output' + publishLocation: 'pipeline' \ No newline at end of file