diff --git a/HelloWorld.java b/HelloWorld.java index d13c25e..c8c5b93 100644 --- a/HelloWorld.java +++ b/HelloWorld.java @@ -4,6 +4,6 @@ */ public class HelloWorld { public static void main(String[] args) { - System.out.println("Hello, World"); + System.out.println("Hello, World this is sid"); } } diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..6d6e7b7 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,20 @@ +# Starter pipeline +- task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)' + ArtifactName: 'drop' + publishLocation: 'Container' +# 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: +- master + +pool: + vmImage: ubuntu-latest + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script'