Skip to content

Commit

Permalink
Merge pull request #4 from Yukino2002/fix_lint_errors
Browse files Browse the repository at this point in the history
Fix Layers Icon on HomePage
  • Loading branch information
dibyam1101 authored Nov 23, 2023
2 parents 2866d72 + f370ea5 commit 3df32ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_check_deploy_gh_pages.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to gh-pages
name: Check Lint and Build, Deploy to gh-pages

on:
push:
Expand All @@ -13,7 +13,7 @@ permissions:
contents: write

jobs:
build_and_deploy:
build_check_and_deploy_gh_pages:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion new-website/deepchem/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down Expand Up @@ -230,7 +232,7 @@ const Home = () => {
link={"/tutorials"}
/>
<ExploreCardItem
image={"/images/explore-datasets.png"}
image={exploreLayersIcon}
title="LAYERS"
link={"/layers"}
/>
Expand Down

0 comments on commit 3df32ac

Please sign in to comment.