From e5645044d7c4aff9fb2567e7b725969629b5c8cf Mon Sep 17 00:00:00 2001 From: alexweininger Date: Fri, 14 May 2021 13:52:07 -0700 Subject: [PATCH] remove azure pipeline --- .azure-pipelines/package.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .azure-pipelines/package.yml diff --git a/.azure-pipelines/package.yml b/.azure-pipelines/package.yml deleted file mode 100644 index 430c7fd..0000000 --- a/.azure-pipelines/package.yml +++ /dev/null @@ -1,36 +0,0 @@ -# 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: ubuntu-latest - -steps: -- task: NodeTool@0 - displayName: 'Use Node 12.x' - inputs: - versionSpec: 12.x -- task: Npm@1 - displayName: 'npm ci' - inputs: - command: ci -- script: npm run package - displayName: package -- script: npx vsce package - -- task: CopyFiles@2 - displayName: 'Copy vsix to staging directory' - inputs: - Contents: '**/*.vsix' - TargetFolder: '$(build.artifactstagingdirectory)' - - -- task: PublishBuildArtifacts@1 - displayName: 'Publish artifacts: vsix' - inputs: - PathtoPublish: '$(build.artifactstagingdirectory)' - ArtifactName: vsix