forked from microsoft/vscode-pull-request-github
-
Notifications
You must be signed in to change notification settings - Fork 21
/
azure-pipeline.nightly.yml
49 lines (43 loc) · 1.41 KB
/
azure-pipeline.nightly.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
47
48
49
# Run on a schedule
trigger: none
pr: none
schedules:
- cron: '0 9 * * Mon-Thu'
displayName: Nightly Release Schedule
always: true
branches:
include:
- master
jobs:
- job: nightly_release
displayName: Nightly Release
pool:
name: Hosted macOS
steps:
- template: scripts/ci/common-setup.yml
- script: yarn run test
displayName: Run test suite
env:
TEST_JUNIT_XML_PATH: $(Agent.HomeDirectory)/test-results.xml
- script: yarn global add vsce
displayName: Install vsce
- script: >
node ./scripts/prepare-nightly-build.js
-v "$VERSION" -i "$NAME" -n "$DISPLAYNAME" -d "$DESCRIPTION" -p "$PUBLISHER"
displayName: Generate package.json
env:
NAME: vscode-pull-request-azdo-insiders
DISPLAYNAME: Azure Devops Pull Request Nightly Build
DESCRIPTION: Nightly Build Azure Devops Pull Request extension
PUBLISHER: ankitbko
- script: |
mv ./package.json ./package.json.bak
mv ./package.insiders.json ./package.json
mv ./README.md ./README.md.bak
mv ./README.insiders.md ./README.md
mv ./src/constants.ts ./src/constants.ts.bak
mv ./src/constants.insiders.ts ./src/constants.ts
vsce publish -p "$TOKEN" --yarn --noVerify --web
displayName: Publish
env:
TOKEN: $(vsce.token)