Skip to content

Commit 1c17e69

Browse files
committed
updated azure pipeline yml
1 parent ce7fe2c commit 1c17e69

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

azure-pipelines.yml

+12
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,19 @@ steps:
1414
inputs:
1515
versionSpec: '10.x'
1616
displayName: 'Install Node.js'
17+
- task: CopyFiles@2
18+
inputs:
19+
SourceFolder: '$(System.DefaultWorkingDirectory)'
20+
Contents: |
21+
jirax-macos
22+
jirax-linux
23+
jirax-win.exe
24+
TargetFolder: '$(Build.ArtifactStagingDirectory)'
25+
- task: PublishBuildArtifacts@1
26+
inputs:
27+
PathtoPublish: '$(System.DefaultWorkingDirectory)'
1728

1829
- script: |
1930
npm install
31+
npm run build
2032
displayName: 'npm install'

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "jirax",
33
"version": "1.0.0",
4-
"description": "A sample cli tool that shows reports about jira bug count",
4+
"description": "A sample and flexible cli tool to handle JIRA activity",
5+
"author": "Junip Dewan <[email protected]>",
56
"main": "index.js",
67
"bin": {
78
"jirax": "./src/index.js"
@@ -28,7 +29,6 @@
2829
"jirax-cli",
2930
"jira-cmd"
3031
],
31-
"author": "Junip Dewan",
3232
"license": "MIT",
3333
"bugs": {
3434
"url": "https://github.com/junipdewan/jirax/issues"
@@ -41,7 +41,7 @@
4141
"dateformat": "^3.0.3",
4242
"figlet": "^1.2.1",
4343
"inquirer": "^6.3.1",
44-
"jira-connector": "^2.10.0",
44+
"jira-connector": "^2.11.0",
4545
"log-update": "^3.2.0",
4646
"minimist": "^1.2.0",
4747
"open": "^6.3.0",

0 commit comments

Comments
 (0)