Skip to content

Commit a9723e6

Browse files
committed
🤦‍♀️ cleaned up
1 parent 66c0155 commit a9723e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/main.workflow

Lines changed: 4 additions & 4 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"
2020
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"]

0 commit comments

Comments
 (0)