@universal-tennis/ui-shared 0.1.65 → 0.1.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,13 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
# branches:
|
|
6
|
-
# include:
|
|
7
|
-
# - '*'
|
|
8
|
-
|
|
9
|
-
trigger: none
|
|
10
|
-
pr: none
|
|
1
|
+
trigger:
|
|
2
|
+
tags:
|
|
3
|
+
include:
|
|
4
|
+
- '*'
|
|
11
5
|
|
|
12
6
|
pool:
|
|
13
7
|
vmImage: ubuntu-latest
|
|
@@ -77,11 +71,12 @@ stages:
|
|
|
77
71
|
- job: publish
|
|
78
72
|
displayName: publish npm
|
|
79
73
|
steps:
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
74
|
+
- task: AzureKeyVault@2
|
|
75
|
+
inputs:
|
|
76
|
+
azureSubscription: 'utr-azure'
|
|
77
|
+
KeyVaultName: 'utr-shared-akv'
|
|
78
|
+
SecretsFilter: 'NpmPublishToken'
|
|
79
|
+
RunAsPreJob: true
|
|
85
80
|
- task: UseNode@1
|
|
86
81
|
inputs:
|
|
87
82
|
version: $(nodeVersion)
|
|
@@ -95,16 +90,18 @@ stages:
|
|
|
95
90
|
displayName: 'yarn install'
|
|
96
91
|
inputs:
|
|
97
92
|
arguments: 'install'
|
|
93
|
+
env:
|
|
94
|
+
NPM_TOKEN: $(NpmPublishToken)
|
|
98
95
|
- task: Yarn@3
|
|
99
96
|
displayName: 'yarn run publish:npm'
|
|
100
97
|
inputs:
|
|
101
98
|
arguments: 'run publish:npm'
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
99
|
+
env:
|
|
100
|
+
NPM_TOKEN: $(NpmPublishToken)
|
|
101
|
+
- task: Bash@3
|
|
102
|
+
inputs:
|
|
103
|
+
targetType: 'inline'
|
|
104
|
+
script: |
|
|
105
|
+
npm publish
|
|
106
|
+
env:
|
|
107
|
+
NPM_TOKEN: $(NpmPublishToken)
|