From 79509f28f1f929e33421f1f1fdf6bc71d8c9d826 Mon Sep 17 00:00:00 2001 From: Emily Date: Wed, 13 Feb 2019 11:49:56 -0800 Subject: [PATCH 1/4] updates publish action args --- .github/main.workflow | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index 804e8712534..f75053e8929 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -36,4 +36,5 @@ action "publish" { "GITHUB_TOKEN", "NPM_AUTH_TOKEN", ] -} + args = "[\"--\", \"--unsafe-perm\"]" +} From 23555b4189968893ed5c2333706a0762adbbd05b Mon Sep 17 00:00:00 2001 From: Emily Date: Wed, 13 Feb 2019 11:50:58 -0800 Subject: [PATCH 2/4] update version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6e4638358ef..787e0bdca32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/components", - "version": "10.0.0", + "version": "10.0.1", "description": "Primer react components", "main": "dist/index.umd.js", "module": "dist/index.esm.js", From 3aa10660c328009ae98800170b846832b1cd0523 Mon Sep 17 00:00:00 2001 From: Shawn Allen Date: Wed, 13 Feb 2019 11:51:21 -0800 Subject: [PATCH 3/4] Update .github/main.workflow Co-Authored-By: emplums --- .github/main.workflow | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index f75053e8929..7699a78c1dc 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -36,5 +36,5 @@ action "publish" { "GITHUB_TOKEN", "NPM_AUTH_TOKEN", ] - args = "[\"--\", \"--unsafe-perm\"]" + args = ["--", "--unsafe-perm"] } From 4715396604c45a6add79b73c0d77a08e836bdb48 Mon Sep 17 00:00:00 2001 From: Shawn Allen Date: Wed, 13 Feb 2019 11:58:32 -0800 Subject: [PATCH 4/4] publish before deploying Deploying takes a while, and (IME) it's usually more important to see the package in its published form than deployed. --- .github/main.workflow | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index 7699a78c1dc..378547f3d40 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -3,8 +3,8 @@ workflow "Primer Components Workflow" { resolves = [ "npm lint", "npm test", - "deploy", "publish", + "deploy", ] }