From a918ccf9e61bba1ee5f3ea0d8d0c4b33b4f83aa2 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Date: Sun, 21 Apr 2019 11:43:46 +0200 Subject: [PATCH] Fix action preview (capitalize Borales) Without it, Github action can't load meta data (icon color, name, etc.) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ba8a33b..f608b2a 100644 --- a/README.md +++ b/README.md @@ -15,19 +15,19 @@ workflow "Build, Test, and Publish" { } action "Build" { - uses = "borales/actions-yarn@master" + uses = "Borales/actions-yarn@master" args = "install" } action "Test" { needs = "Build" - uses = "borales/actions-yarn@master" + uses = "Borales/actions-yarn@master" args = "test" } action "Publish" { needs = "Test" - uses = "borales/actions-yarn@master" + uses = "Borales/actions-yarn@master" args = "publish --access public" secrets = ["NPM_AUTH_TOKEN"] } @@ -48,7 +48,7 @@ To authenticate with, and publish to, a registry other than `registry.npmjs.org` ```hcl action "Publish" { - uses = "borales/actions-yarn@master" + uses = "Borales/actions-yarn@master" args = "publish --access public" env = { NPM_REGISTRY_URL = "someOtherRegistry.someDomain.net"