From 7f17bc9396a448b07b8f9a68b33a7d072ce1b8f1 Mon Sep 17 00:00:00 2001 From: Dibyam Kumar Date: Thu, 23 Nov 2023 13:39:58 +0530 Subject: [PATCH 1/2] Fix Layers Icon on HomePage --- new-website/deepchem/pages/index.js | 4 +++- .../{explore-datasets.png => explore-layers.png} | Bin 2 files changed, 3 insertions(+), 1 deletion(-) rename new-website/deepchem/public/images/{explore-datasets.png => explore-layers.png} (100%) diff --git a/new-website/deepchem/pages/index.js b/new-website/deepchem/pages/index.js index 80b6dddf..1bd68488 100644 --- a/new-website/deepchem/pages/index.js +++ b/new-website/deepchem/pages/index.js @@ -17,6 +17,8 @@ import { AnimationsContext } from "../contexts/animations-context"; import exploreTutorialsIcon from "../public/images/explore-tutorials.png"; import exploreProjectsIcon from "../public/images/explore-projects.png"; import exploreModelsIcon from "./../public/images/explore-models.png"; +import exploreLayersIcon from "./../public/images/explore-layers.png"; + import Terminal from "../components/Home/Terminal"; import deepchemLogo from "../public/images/deepchem-logo.png"; @@ -230,7 +232,7 @@ const Home = () => { link={"/tutorials"} /> diff --git a/new-website/deepchem/public/images/explore-datasets.png b/new-website/deepchem/public/images/explore-layers.png similarity index 100% rename from new-website/deepchem/public/images/explore-datasets.png rename to new-website/deepchem/public/images/explore-layers.png From f370ea5eb62513a6a80a56b06633a50164162e65 Mon Sep 17 00:00:00 2001 From: Dibyam Kumar Date: Thu, 23 Nov 2023 13:44:43 +0530 Subject: [PATCH 2/2] Update workflow name for clarity --- .github/workflows/build_check_deploy_gh_pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_check_deploy_gh_pages.yml b/.github/workflows/build_check_deploy_gh_pages.yml index 5df654ea..b9f9baf8 100644 --- a/.github/workflows/build_check_deploy_gh_pages.yml +++ b/.github/workflows/build_check_deploy_gh_pages.yml @@ -1,4 +1,4 @@ -name: Deploy to gh-pages +name: Check Lint and Build, Deploy to gh-pages on: push: @@ -13,7 +13,7 @@ permissions: contents: write jobs: - build_and_deploy: + build_check_and_deploy_gh_pages: runs-on: ubuntu-latest steps: @@ -60,7 +60,7 @@ jobs: npm run lint npm run export - # Run the deploy action if the push is to the main branch + # Run the deploy action only if the push is to the main branch - name: Deploy 🚀 if: ${{ github.ref == 'refs/heads/main' }} uses: JamesIves/github-pages-deploy-action@v4