Skip to content

Commit b3eaec0

Browse files
committed
Merge branch 'release/1.6.6'
2 parents ed127e3 + 38d5305 commit b3eaec0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/main.workflow

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ action "Install" {
99
}
1010

1111
action "Test" {
12-
needs = ["Install"]
12+
needs = "Install"
1313
uses = "borales/actions-yarn@master"
1414
args = "test"
1515
}
1616

17-
action "Release Tag" {
18-
needs = ["Test"]
17+
action "Master" {
18+
needs = "Test"
1919
uses = "actions/bin/filter@master"
20-
args = "tag *.*.*"
20+
args = "tag"
2121
}
2222

2323
action "Publish" {
24-
needs = ["Release Tag"]
24+
needs = "Master"
2525
uses = "borales/actions-yarn@master"
2626
args = "publish --access public"
2727
secrets = ["NPM_AUTH_TOKEN"]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "netlify-local",
3-
"version": "1.6.4",
3+
"version": "1.6.6",
44
"description": "Local Netlify service emulation",
55
"main": ".dist/index.js",
66
"types": ".dist/index.d.ts",

0 commit comments

Comments
 (0)