From fba46aa49c5b78d0829e50d1c4e21f09a7b478f6 Mon Sep 17 00:00:00 2001 From: Jeremy Hager <47301461+jeremyhager@users.noreply.github.com> Date: Wed, 16 Sep 2020 11:30:46 -0700 Subject: [PATCH 1/6] Added powershell command for deployment - specified batch command is for cmd - added powershell as an option for deployment, changed to single quotes --- website/docs/deployment.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/docs/deployment.md b/website/docs/deployment.md index 99c4239a6ea3..af6f921194d7 100644 --- a/website/docs/deployment.md +++ b/website/docs/deployment.md @@ -102,10 +102,14 @@ GIT_USER= yarn deploy **Windows** -```batch +```batch title="cmd" cmd /C "set "GIT_USER=" && yarn deploy" ``` +```powershell title="powershell" +cmd /C 'set "GIT_USER=" && yarn deploy' +``` + ### Triggering deployment with GitHub Actions [GitHub Actions](https://help.github.com/en/actions) allow you to automate, customize, and execute your software development workflows right in your repository. From fbf6e862c76bbb77dd316a97150912f6d7a409e0 Mon Sep 17 00:00:00 2001 From: Jeremy Hager <47301461+jeremyhager@users.noreply.github.com> Date: Thu, 17 Sep 2020 06:54:57 -0700 Subject: [PATCH 2/6] - This affects the following versioned docs: - 2.0.0-alpha.63 - 2.0.0-alpha.64 - Next (Dev) --- website/versioned_docs/version-2.0.0-alpha.63/deployment.md | 6 +++++- website/versioned_docs/version-2.0.0-alpha.64/deployment.md | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md index 99c4239a6ea3..af6f921194d7 100644 --- a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md @@ -102,10 +102,14 @@ GIT_USER= yarn deploy **Windows** -```batch +```batch title="cmd" cmd /C "set "GIT_USER=" && yarn deploy" ``` +```powershell title="powershell" +cmd /C 'set "GIT_USER=" && yarn deploy' +``` + ### Triggering deployment with GitHub Actions [GitHub Actions](https://help.github.com/en/actions) allow you to automate, customize, and execute your software development workflows right in your repository. diff --git a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md index 99c4239a6ea3..af6f921194d7 100644 --- a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md @@ -102,10 +102,14 @@ GIT_USER= yarn deploy **Windows** -```batch +```batch title="cmd" cmd /C "set "GIT_USER=" && yarn deploy" ``` +```powershell title="powershell" +cmd /C 'set "GIT_USER=" && yarn deploy' +``` + ### Triggering deployment with GitHub Actions [GitHub Actions](https://help.github.com/en/actions) allow you to automate, customize, and execute your software development workflows right in your repository. From 0f1bbbb24953ae923b3d9be8e1c0593aa5aea8dd Mon Sep 17 00:00:00 2001 From: jeremyhager <47301461+jeremyhager@users.noreply.github.com> Date: Thu, 17 Sep 2020 12:07:18 -0700 Subject: [PATCH 3/6] Changed deploy commands to tabbed - bash, windows, powershell, and cmd are now part of - default value is bash --- website/docs/deployment.md | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/website/docs/deployment.md b/website/docs/deployment.md index af6f921194d7..fe63741cf236 100644 --- a/website/docs/deployment.md +++ b/website/docs/deployment.md @@ -94,22 +94,29 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: -**Bash** + ```bash GIT_USER= yarn deploy ``` -**Windows** + + -```batch title="cmd" -cmd /C "set "GIT_USER=" && yarn deploy" +```powershell +cmd /C 'set "GIT_USER=" && yarn deploy' ``` -```powershell title="powershell" -cmd /C 'set "GIT_USER=" && yarn deploy' + + + +```batch +cmd /C "set "GIT_USER=" && yarn deploy" ``` + + + ### Triggering deployment with GitHub Actions [GitHub Actions](https://help.github.com/en/actions) allow you to automate, customize, and execute your software development workflows right in your repository. From 2dec32232013515a6d99704a18b0d9e5b011196a Mon Sep 17 00:00:00 2001 From: jeremyhager <47301461+jeremyhager@users.noreply.github.com> Date: Thu, 17 Sep 2020 12:14:37 -0700 Subject: [PATCH 4/6] Changed deployment commands to tabs in v63 and 64 - Next (dev) now has better syntax - 2.0.0-alpha-63 and 2.0.0-alpha-64 now include the tabs as well --- website/docs/deployment.md | 2 +- .../version-2.0.0-alpha.63/deployment.md | 19 +++++++++++++------ .../version-2.0.0-alpha.64/deployment.md | 19 +++++++++++++------ 3 files changed, 27 insertions(+), 13 deletions(-) diff --git a/website/docs/deployment.md b/website/docs/deployment.md index fe63741cf236..018392d2fc02 100644 --- a/website/docs/deployment.md +++ b/website/docs/deployment.md @@ -94,7 +94,7 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: - + ```bash GIT_USER= yarn deploy diff --git a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md index af6f921194d7..018392d2fc02 100644 --- a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md @@ -94,22 +94,29 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: -**Bash** + ```bash GIT_USER= yarn deploy ``` -**Windows** + + -```batch title="cmd" -cmd /C "set "GIT_USER=" && yarn deploy" +```powershell +cmd /C 'set "GIT_USER=" && yarn deploy' ``` -```powershell title="powershell" -cmd /C 'set "GIT_USER=" && yarn deploy' + + + +```batch +cmd /C "set "GIT_USER=" && yarn deploy" ``` + + + ### Triggering deployment with GitHub Actions [GitHub Actions](https://help.github.com/en/actions) allow you to automate, customize, and execute your software development workflows right in your repository. diff --git a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md index af6f921194d7..018392d2fc02 100644 --- a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md @@ -94,22 +94,29 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: -**Bash** + ```bash GIT_USER= yarn deploy ``` -**Windows** + + -```batch title="cmd" -cmd /C "set "GIT_USER=" && yarn deploy" +```powershell +cmd /C 'set "GIT_USER=" && yarn deploy' ``` -```powershell title="powershell" -cmd /C 'set "GIT_USER=" && yarn deploy' + + + +```batch +cmd /C "set "GIT_USER=" && yarn deploy" ``` + + + ### Triggering deployment with GitHub Actions [GitHub Actions](https://help.github.com/en/actions) allow you to automate, customize, and execute your software development workflows right in your repository. From ac33a1d2f2bc17f056ad2516b9b9a0bee6b8ce62 Mon Sep 17 00:00:00 2001 From: Jeremy Hager <47301461+jeremyhager@users.noreply.github.com> Date: Fri, 18 Sep 2020 06:31:05 -0700 Subject: [PATCH 5/6] Updated lables in deploy and cmd to Windows - Labels now are first-letter uppercase - eg. bash -> Bash - cmd is now Windows to align with original docs --- website/docs/deployment.md | 14 +++++++------- .../version-2.0.0-alpha.63/deployment.md | 14 +++++++------- .../version-2.0.0-alpha.64/deployment.md | 14 +++++++------- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/website/docs/deployment.md b/website/docs/deployment.md index 018392d2fc02..436105964ed6 100644 --- a/website/docs/deployment.md +++ b/website/docs/deployment.md @@ -94,24 +94,24 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: - + ```bash GIT_USER= yarn deploy ``` - + -```powershell -cmd /C 'set "GIT_USER=" && yarn deploy' +```batch +cmd /C "set "GIT_USER=" && yarn deploy" ``` - + -```batch -cmd /C "set "GIT_USER=" && yarn deploy" +```powershell +cmd /C 'set "GIT_USER=" && yarn deploy' ``` diff --git a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md index 018392d2fc02..436105964ed6 100644 --- a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md @@ -94,24 +94,24 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: - + ```bash GIT_USER= yarn deploy ``` - + -```powershell -cmd /C 'set "GIT_USER=" && yarn deploy' +```batch +cmd /C "set "GIT_USER=" && yarn deploy" ``` - + -```batch -cmd /C "set "GIT_USER=" && yarn deploy" +```powershell +cmd /C 'set "GIT_USER=" && yarn deploy' ``` diff --git a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md index 018392d2fc02..436105964ed6 100644 --- a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md @@ -94,24 +94,24 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: - + ```bash GIT_USER= yarn deploy ``` - + -```powershell -cmd /C 'set "GIT_USER=" && yarn deploy' +```batch +cmd /C "set "GIT_USER=" && yarn deploy" ``` - + -```batch -cmd /C "set "GIT_USER=" && yarn deploy" +```powershell +cmd /C 'set "GIT_USER=" && yarn deploy' ``` From bd1bfb2ee4c40438246f6787c4f23093b12e76f3 Mon Sep 17 00:00:00 2001 From: Jeremy Hager <47301461+jeremyhager@users.noreply.github.com> Date: Fri, 18 Sep 2020 07:24:35 -0700 Subject: [PATCH 6/6] Removed `` spacing in deploy section - Removed spacing at end of `values` statement - Removed spacing between `` and `` - build successful locally --- website/docs/deployment.md | 12 ++++++------ .../version-2.0.0-alpha.63/deployment.md | 12 ++++++------ .../version-2.0.0-alpha.64/deployment.md | 12 ++++++------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/website/docs/deployment.md b/website/docs/deployment.md index 436105964ed6..790e1b80053e 100644 --- a/website/docs/deployment.md +++ b/website/docs/deployment.md @@ -94,27 +94,27 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: - + ```bash GIT_USER= yarn deploy ``` - - + + ```batch cmd /C "set "GIT_USER=" && yarn deploy" ``` - - + + ```powershell cmd /C 'set "GIT_USER=" && yarn deploy' ``` - + ### Triggering deployment with GitHub Actions diff --git a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md index 436105964ed6..790e1b80053e 100644 --- a/website/versioned_docs/version-2.0.0-alpha.63/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.63/deployment.md @@ -94,27 +94,27 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: - + ```bash GIT_USER= yarn deploy ``` - - + + ```batch cmd /C "set "GIT_USER=" && yarn deploy" ``` - - + + ```powershell cmd /C 'set "GIT_USER=" && yarn deploy' ``` - + ### Triggering deployment with GitHub Actions diff --git a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md index 436105964ed6..790e1b80053e 100644 --- a/website/versioned_docs/version-2.0.0-alpha.64/deployment.md +++ b/website/versioned_docs/version-2.0.0-alpha.64/deployment.md @@ -94,27 +94,27 @@ Optional parameters, also set as environment variables: Finally, to deploy your site to GitHub Pages, run: - + ```bash GIT_USER= yarn deploy ``` - - + + ```batch cmd /C "set "GIT_USER=" && yarn deploy" ``` - - + + ```powershell cmd /C 'set "GIT_USER=" && yarn deploy' ``` - + ### Triggering deployment with GitHub Actions