Parcourir la source

Only deploy on 'master' builds

default_compile_flags
vector-of-bool il y a 3 ans
Parent
révision
0e8e3cd29c
1 fichiers modifiés avec 1 ajouts et 4 suppressions
  1. +1
    -4
      azure-pipelines.yml

+ 1
- 4
azure-pipelines.yml Voir le fichier

@@ -2,10 +2,7 @@

variables:
shouldDeploy: >-
${{ or(
eq(variables['Build.SourceBranch'], 'refs/heads/develop'),
eq(variables['Build.SourceBranch'], 'refs/heads/master')
) }}
${{ eq(variables['Build.SourceBranch'], 'refs/heads/master') }}
deployDest: ${{ format('~/web/{0}/', variables['Build.SourceBranchName']) }}

stages:

Chargement…
Annuler
Enregistrer