6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit b79d08ed
Changed files
azure-pipelines.yml | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-)
Diff
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index f53e97b6..872870ec 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -1,19 +1,25 @@
# 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
+- master
pool:
vmImage: ubuntu-latest
-
+
steps:
-- script: echo Hello, world!
- displayName: 'Run a one-line script'
-
-- script: |
- echo Add other tasks to build, test, and deploy your project.
- echo See https://aka.ms/yaml
- displayName: 'Run a multi-line script'
+- task: FlutterInstall@0
+ inputs:
+ mode: 'auto'
+ channel: 'stable'
+ version: 'latest'
+# 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
+- task: FlutterBuild@0
+ inputs:
+ target: 'web'
+ projectDirectory: '.'
+- task: PublishBuildArtifacts@1
+ inputs:
+ PathtoPublish: '$(Build.ArtifactStagingDirectory)'
+ ArtifactName: 'drop'
+ publishLocation: 'Container'
\ No newline at end of file