Skip to content

Commit

Permalink
add line ending in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
spnraju committed Jul 17, 2019
1 parent aac2798 commit 5d92612
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
14 changes: 10 additions & 4 deletions .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,18 @@ workflow "Deploy in VS Market Place" {

action "Npm Install" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
args = "install"
args = ["install", "--unsafe-perm"]
}

action "Publish" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
action "Master" {
uses = "actions/bin/filter@master"
args = "branch master"
needs = ["Npm Install"]
args = "run publish -- -p \"$VS_ACCESS_KEY\""
}

action "Publish" {
uses = "lannonbr/vsce-action@master"
needs = ["Master"]
args = "publish -p $VS_ACCESS_KEY"
secrets = ["VS_ACCESS_KEY"]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [0.3.4] - 17-07-2019 (DD-MM-YYYY)
### Patch
- fix typo in Readme

## [0.3.3] - 17-07-2019 (DD-MM-YYYY)
### Patch
- fix typo in snippets.json
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
[![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)


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


**List of commands :**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-nightwatchjs-snippets",
"version": "0.3.3",
"version": "0.3.4",
"description": "NightwatchJS code snippets for Visual Studio Code",
"displayName": "NightwatchJS snippets",
"publisher": "Raju",
Expand Down

0 comments on commit 5d92612

Please sign in to comment.