-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
46 lines (38 loc) · 1.13 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Xamarin.iOS
# Build a Xamarin.iOS project.
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
trigger:
- master
schedules:
- cron: 10 18 * * Mon # mm HH DD MM DW
displayName: Localization update
branches:
include:
- master
always: true
pool:
vmImage: 'Ubuntu-latest'
steps:
- powershell: |
$PR_LINK="Dummy"
Write-Host "##vso[task.setvariable variable=PR_LINK]$PR_LINK"
- powershell: |
echo $env:PR_LINK
#- task: InstallAppleProvisioningProfilem@1
# inputs:
# provisioningProfileLocation: 'secureFiles'
# provProfileSecureFile: 'test.mobileprovision'
# #provProfileSourceRepository: 'test.mobileprovision'
# removeProfile: true
#- task: Bash@3
# displayName: "Check if provisioning profile installed"
# inputs:
# targetType: 'inline'
# script: |
# cd "$HOME/Library/MobileDevice/Provisioning Profiles"
# security cms -D -i B5C2906D-D6EE-476E-AF17-D99AE14644AA.mobileprovision
#- task: Bash@3
# inputs:
# targetType: 'inline'
# script: 'node --version'