Skip to content

Commit

Permalink
Update build
Browse files Browse the repository at this point in the history
  • Loading branch information
willtheorangeguy committed Nov 7, 2023
1 parent 3a9bb1b commit f4b3653
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pages-build-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
uses: actions/checkout@v3
- name: Install, build, and upload your site
uses: withastro/action@v1
# with:
# path: . # The root location of your Astro project inside the repository. (optional)
# node-version: 18 # The specific version of Node that should be used to build your site. Defaults to 18. (optional)
# package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)
with:
path: .
node-version: 18 # The specific version of Node that should be used to build your site. Defaults to 18. (optional)
package-manager: pnpm@latest # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional)

deploy:
needs: build
Expand Down
1 change: 1 addition & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import vue from "@astrojs/vue";

// https://astro.build/config
export default defineConfig({
site: 'https://dog-face-development.github.io',
integrations: [
// Enable Preact to support Preact JSX components.
vue(),
Expand Down
22 changes: 11 additions & 11 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
import { SITE } from "../config";
const navItems = [
{
title: 'Core',
description: 'Base colors, typography, shadows, and more.',
title: 'Android',
description: 'Android',
url: '/core/introduction',
img: '/Core.jpg'
img: 'https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Android_robot.svg/800px-Android_robot.svg.png'
},
{
title: 'Components',
description: 'The building blocks for our UI.',
url: '/components/buttons',
img: '/Components.jpg'
title: 'Arduino',
description: 'Arduino',
url: '/core/introduction',
img: 'https://upload.wikimedia.org/wikipedia/commons/8/87/Arduino_Logo.svg'
},
{
title: 'Patterns',
description: 'Common patterns for building interfaces.',
url: '/patterns/introduction',
img: '/Patterns.jpg'
title: 'C',
description: 'C',
url: '/core/introduction',
img: 'https://upload.wikimedia.org/wikipedia/commons/1/19/C_Logo.png'
}
]
Expand Down

0 comments on commit f4b3653

Please sign in to comment.