Skip to content

Commit 5d92612

Browse files
committed
add line ending in readme
1 parent aac2798 commit 5d92612

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

.github/main.workflow

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ workflow "Deploy in VS Market Place" {
55

66
action "Npm Install" {
77
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
8-
args = "install"
8+
args = ["install", "--unsafe-perm"]
99
}
1010

11-
action "Publish" {
12-
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
11+
action "Master" {
12+
uses = "actions/bin/filter@master"
13+
args = "branch master"
1314
needs = ["Npm Install"]
14-
args = "run publish -- -p \"$VS_ACCESS_KEY\""
15+
}
16+
17+
action "Publish" {
18+
uses = "lannonbr/vsce-action@master"
19+
needs = ["Master"]
20+
args = "publish -p $VS_ACCESS_KEY"
1521
secrets = ["VS_ACCESS_KEY"]
1622
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [0.3.4] - 17-07-2019 (DD-MM-YYYY)
4+
### Patch
5+
- fix typo in Readme
6+
37
## [0.3.3] - 17-07-2019 (DD-MM-YYYY)
48
### Patch
59
- fix typo in snippets.json

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[![TrendingMonthly](https://vsmarketplacebadge.apphb.com/trending-monthly/Raju.vscode-nightwatchjs-snippets.svg?color=blue&&subject=TrendingMonthly)](https://marketplace.visualstudio.com/items?itemName=Raju.vscode-nightwatchjs-snippets)
88

99

10-
**Please type "nw" first and it will list down all the commands**
11-
**Please help with rating/feedback which might be useful in improving this further**
10+
* **Please type "nw" first and it will list down all the commands**
11+
* **Please help with rating/feedback which might be useful in improving this further**
1212

1313

1414
**List of commands :**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-nightwatchjs-snippets",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"description": "NightwatchJS code snippets for Visual Studio Code",
55
"displayName": "NightwatchJS snippets",
66
"publisher": "Raju",

0 commit comments

Comments
 (0)