From 0674ba3f984a9674fffd8d70d0f7330e7fe714b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daviny=20Let=C3=ADcia?= Date: Sun, 30 Jun 2024 02:19:05 -0300 Subject: [PATCH 1/2] Create CNAME --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..9119c1a --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +codivas.com.br \ No newline at end of file From ca7fe33d00f3239cf467629d69b9e24d754921ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daviny=20Let=C3=ADcia?= Date: Sun, 30 Jun 2024 02:21:31 -0300 Subject: [PATCH 2/2] Update build.yml --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cdac7e6..94df268 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,11 +28,11 @@ jobs: run: | git config --global user.name 'github-actions[bot]' git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git clone --branch gh-pages https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git gh-pages - rm -rf gh-pages/* - cp -r dist/* gh-pages/ - echo "codivas.com.br" > gh-pages/CNAME - cd gh-pages + git clone --branch github-pages https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git github-pages + rm -rf github-pages/* + cp -r dist/* github-pages/ + echo "codivas.com.br" > github-pages/CNAME + cd github-pages git add --all git commit -m "Deploy to GitHub Pages" - git push origin gh-pages \ No newline at end of file + git push origin github-pages