From ed5e79b73c1f3afa1792959d3152c9798b4be714 Mon Sep 17 00:00:00 2001 From: Mariano Gonzalez Salazar Date: Tue, 21 Jul 2020 15:08:27 +0200 Subject: [PATCH 1/4] test --- src/Button/Button.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Button/Button.tsx b/src/Button/Button.tsx index dfe8968..92adb08 100644 --- a/src/Button/Button.tsx +++ b/src/Button/Button.tsx @@ -105,6 +105,8 @@ export function Button({ } } + // Another test + const btn = (
Date: Tue, 21 Jul 2020 15:09:23 +0200 Subject: [PATCH 2/4] workflow fix --- .github/workflows/github-pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 57449bc..d39231d 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -4,9 +4,9 @@ jobs: build-and-deploy: runs-on: ubuntu-latest steps: - - name: Install and Build 🔧 - uses: actions/checkout@v1 - - run: | + - name: Install and Build 🔧 + run: | yarn install yarn docz:build From 9e2b58db3b9dfa39c60487187b891a9734e3756b Mon Sep 17 00:00:00 2001 From: Mariano Gonzalez Salazar Date: Tue, 21 Jul 2020 16:24:17 +0200 Subject: [PATCH 3/4] docz base url updated to match with github pages --- doczrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doczrc.js b/doczrc.js index ca0cb0a..5b39944 100644 --- a/doczrc.js +++ b/doczrc.js @@ -1,3 +1,4 @@ export default { - typescript: true + typescript: true, + base: '/kwc/' } From 875ecb11e0475b50fd5df9f0ff96f43ea57edf45 Mon Sep 17 00:00:00 2001 From: Mariano Gonzalez Salazar Date: Tue, 21 Jul 2020 16:32:35 +0200 Subject: [PATCH 4/4] checkout step named in github workflows --- .github/workflows/github-pages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index d39231d..4b1c212 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -4,7 +4,8 @@ jobs: build-and-deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - name: Checkout + uses: actions/checkout@v1 - name: Install and Build 🔧 run: | yarn install