Skip to content

Commit

Permalink
Set up CI with Azure Pipelines
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
stavroskasidis committed Feb 3, 2022
1 parent e70c525 commit e56d635
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions azure-pipelines-sample-apps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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:
branches:
include:
- master
paths:
include:
- sampleapps

pool:
vmImage: ubuntu-latest

workspace:
clean: all

steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
useGlobalJson: true
- task: PowerShell@2
inputs:
filePath: 'scripts/build-sample-apps.ps1'
arguments: '$(VersionSuffix)'

- task: PublishBuildArtifacts@1
inputs:
PathtoPublish: 'artifacts/sample-apps'
ArtifactName: 'drop'
publishLocation: 'Container'

0 comments on commit e56d635

Please sign in to comment.