From 97b166401ea3afd9c85ce91938b937548665ffcc Mon Sep 17 00:00:00 2001 From: matt c Date: Thu, 17 Oct 2024 15:56:13 +0100 Subject: [PATCH] will he build? --- .forgejo/workflows/build.yml | 6 ++++-- .gitignore | 1 + src/components/Subheading.astro | 4 ---- src/pages/services.astro | 2 -- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index ccfa6d6..139a72d 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -5,5 +5,7 @@ jobs: container.image: node:20-bookworm steps: - uses: actions/checkout@v3 - name: Get stuff - - run: bing bong? \ No newline at end of file + - run: npm install && npm run build + - uses: actions/upload-artifact@v3 + with: + path: .vercel/output/static \ No newline at end of file diff --git a/.gitignore b/.gitignore index 02f6e50..3172d49 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # build output dist/ +.vercel/ # dependencies node_modules/ diff --git a/src/components/Subheading.astro b/src/components/Subheading.astro index eb827ee..56755f4 100644 --- a/src/components/Subheading.astro +++ b/src/components/Subheading.astro @@ -1,9 +1,5 @@ --- -interface Props { - title: string; -} -const { title } = Astro.props; ---

diff --git a/src/pages/services.astro b/src/pages/services.astro index 7034f69..47315f6 100644 --- a/src/pages/services.astro +++ b/src/pages/services.astro @@ -1,8 +1,6 @@ --- import { AppConfig } from '@/utils/AppConfig'; import Base from '@/layouts/Base.astro'; -import Hero from '@/components/Hero.astro'; -import LatestPosts from '@/components/LatestPosts.astro'; import Section from '@/components/Section.astro'; import Subheading from '@/components/Subheading.astro'; import ServSection from '@/components/ServSection.astro';