From 6ec0a1f95841077d7af08fd3f4e5f6efabc3f17e Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Thu, 31 Jul 2025 23:49:26 -0400 Subject: [PATCH 01/13] updates .gitignore with .idea for pycharm config disregardance --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8e7af96..d3f0222 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ node_modules .DS_Store .eslintcache *.log +.idea From 2f40d598d940a5a1249b0d80dbf37d2b1dffa01d Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 00:03:03 -0400 Subject: [PATCH 02/13] updates site config --- astro.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/astro.config.ts b/astro.config.ts index f5bd6b6..ed2c037 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -5,7 +5,8 @@ import { defineConfig } from 'astro/config' import UnoCSS from 'unocss/astro' export default defineConfig({ - site: 'https://astro-theme-vitesse.netlify.app/', + site: 'https://fredworklemmas.github.io/', + base: 'fredworklemmas', server: { port: 1977, }, From 5a51f9ff9a959ce933d6d061793a40b08d95dc74 Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 00:38:55 -0400 Subject: [PATCH 03/13] troubleshooting --- .github/workflows/ci.yml | 4 ++-- astro.config.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99db40c..d284b49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,9 @@ jobs: - uses: actions/checkout@v3 - name: Set node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: lts/* + node-version: 'lts/*' - name: Install dependencies run: npm install diff --git a/astro.config.ts b/astro.config.ts index ed2c037..4abe4e2 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -6,7 +6,7 @@ import UnoCSS from 'unocss/astro' export default defineConfig({ site: 'https://fredworklemmas.github.io/', - base: 'fredworklemmas', + base: 'fredworklemmas/dist', server: { port: 1977, }, From 89992be047fdd88a1f90aec5f7eaa2239fd5ffb8 Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 00:41:54 -0400 Subject: [PATCH 04/13] troubleshooting --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d284b49..a3234b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Set node uses: actions/setup-node@v4 with: - node-version: 'lts/*' + node-version: latest - name: Install dependencies run: npm install From 24e0430a05935ef5213c37b4ce83a7e877c695ce Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 00:43:59 -0400 Subject: [PATCH 05/13] troubleshooting --- astro.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.ts b/astro.config.ts index 4abe4e2..ed2c037 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -6,7 +6,7 @@ import UnoCSS from 'unocss/astro' export default defineConfig({ site: 'https://fredworklemmas.github.io/', - base: 'fredworklemmas/dist', + base: 'fredworklemmas', server: { port: 1977, }, From 0660bdfc9faeae4ba22139bdb0d96ed426aafc1d Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:26:59 -0400 Subject: [PATCH 06/13] troubleshooting --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3234b2..1b14c6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,9 @@ jobs: - name: Set node uses: actions/setup-node@v4 with: - node-version: latest + node-version: 16 + path: . + package-manager: pnpm - name: Install dependencies run: npm install From 672b87b88bd8f0dd2c7d5f5a2873ffc08318fe33 Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:32:42 -0400 Subject: [PATCH 07/13] troubleshooting --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b14c6d..9684f9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,8 @@ jobs: uses: actions/setup-node@v4 with: node-version: 16 - path: . - package-manager: pnpm + path: '.' + #package-manager: 'pnpm' - name: Install dependencies run: npm install From 750af06752334a054dbdeee7edb610ed7d848e1d Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:37:05 -0400 Subject: [PATCH 08/13] troubleshooting --- astro.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.ts b/astro.config.ts index ed2c037..8ced787 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -6,7 +6,7 @@ import UnoCSS from 'unocss/astro' export default defineConfig({ site: 'https://fredworklemmas.github.io/', - base: 'fredworklemmas', + base: 'FredworkLemmas', server: { port: 1977, }, From 6105cbd44ca868d1c0260fe6e0bdc189f486b3a4 Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:39:58 -0400 Subject: [PATCH 09/13] troubleshooting --- .nojekyll | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .nojekyll diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 From 8aa7edaf964d92c042382610b8d252a1a0d8875c Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:46:15 -0400 Subject: [PATCH 10/13] troubleshooting --- astro.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.ts b/astro.config.ts index 8ced787..3617210 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -6,7 +6,7 @@ import UnoCSS from 'unocss/astro' export default defineConfig({ site: 'https://fredworklemmas.github.io/', - base: 'FredworkLemmas', + // base: 'FredworkLemmas', server: { port: 1977, }, From fc778e93d9510f78860a0db62052ddaa912fb506 Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:47:32 -0400 Subject: [PATCH 11/13] cleanup --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9684f9c..0cc4ecc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,8 +19,8 @@ jobs: uses: actions/setup-node@v4 with: node-version: 16 - path: '.' - #package-manager: 'pnpm' + path: . + # package-manager: 'pnpm' - name: Install dependencies run: npm install From 0474fe4edbf8f9c79245358819c140ee9b4eaca4 Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:52:22 -0400 Subject: [PATCH 12/13] troubleshooting --- .github/workflows/{ci.yml => ci.yml.disabled} | 0 .github/workflows/deploy.yml | 39 +++++++++++++++++++ .../{release.yml => release.yml.disabled} | 0 3 files changed, 39 insertions(+) rename .github/workflows/{ci.yml => ci.yml.disabled} (100%) create mode 100644 .github/workflows/deploy.yml rename .github/workflows/{release.yml => release.yml.disabled} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml.disabled similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yml.disabled diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..fc48f30 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,39 @@ +name: Deploy to GitHub Pages + +on: + # Trigger the workflow every time you push to the `main` branch + # Using a different branch name? Replace `main` with your branch’s name + push: + branches: [fred-initial-tweaks-2025073101] + # Allows you to run this workflow manually from the Actions tab on GitHub. + workflow_dispatch: + +# Allow this job to clone the repo and create a page deployment +permissions: + contents: read + pages: write + id-token: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout your repository using git + uses: actions/checkout@v4 + - name: Install, build, and upload your site + uses: withastro/action@v3 + # with: + # path: . # The root location of your Astro project inside the repository. (optional) + # node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (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 + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml.disabled similarity index 100% rename from .github/workflows/release.yml rename to .github/workflows/release.yml.disabled From ebbe033ebef96d612c69e7394594d276fa027f9b Mon Sep 17 00:00:00 2001 From: Fred McDavid Date: Fri, 1 Aug 2025 22:59:27 -0400 Subject: [PATCH 13/13] minor update --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fc48f30..1ca52d7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,7 @@ on: # Trigger the workflow every time you push to the `main` branch # Using a different branch name? Replace `main` with your branch’s name push: - branches: [fred-initial-tweaks-2025073101] + branches: [main] # Allows you to run this workflow manually from the Actions tab on GitHub. workflow_dispatch: