From a893500e3242db3ed56863f98166d73d955d1adb Mon Sep 17 00:00:00 2001 From: Mrufaihi <113942663+Mrufaihi@users.noreply.github.com> Date: Sat, 19 Oct 2024 16:46:45 +0300 Subject: [PATCH 1/5] 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..a106930 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +www.malrufaihi-gamehub.com \ No newline at end of file From 89ff5949d403f4c92a074abc8a59b19e22669691 Mon Sep 17 00:00:00 2001 From: Mrufaihi <113942663+Mrufaihi@users.noreply.github.com> Date: Sat, 19 Oct 2024 16:48:03 +0300 Subject: [PATCH 2/5] Update CNAME --- CNAME | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CNAME b/CNAME index a106930..3b7ffae 100644 --- a/CNAME +++ b/CNAME @@ -1 +1 @@ -www.malrufaihi-gamehub.com \ No newline at end of file +www.malrufaihigamehub.com \ No newline at end of file From 089de27a5bbd49a9cf31698f265c5670b2d2c363 Mon Sep 17 00:00:00 2001 From: Mrufaihi <113942663+Mrufaihi@users.noreply.github.com> Date: Sat, 19 Oct 2024 16:49:22 +0300 Subject: [PATCH 3/5] Delete CNAME --- CNAME | 1 - 1 file changed, 1 deletion(-) delete mode 100644 CNAME diff --git a/CNAME b/CNAME deleted file mode 100644 index 3b7ffae..0000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -www.malrufaihigamehub.com \ No newline at end of file From 28c4415b0aefc91cd6f8ab8e2a294740db90a9e1 Mon Sep 17 00:00:00 2001 From: Mrufaihi <113942663+Mrufaihi@users.noreply.github.com> Date: Sat, 19 Oct 2024 16:51:57 +0300 Subject: [PATCH 4/5] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b2a7107..6dbf5de 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ --- +title: "Video Game Hub" +description: "A web application built with React and TypeScript that allows users to search and explore video games." +--- + # 🎮 Video Game Hub From 60b9f38d38a1dbe0ea31ca31c88049fe2f92253d Mon Sep 17 00:00:00 2001 From: Mrufaihi <113942663+Mrufaihi@users.noreply.github.com> Date: Sat, 19 Oct 2024 18:12:59 +0300 Subject: [PATCH 5/5] Create jekyll-gh-pages.yml --- .github/workflows/jekyll-gh-pages.yml | 51 +++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/jekyll-gh-pages.yml diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 0000000..0ebd768 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["master"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4