Compare commits

..

1 Commits

Author SHA1 Message Date
8cc54fc3cd chore(deps): update dependency python to 3.14
Some checks failed
test-build / build (pull_request) Successful in 1m23s
test-build / guarddog (pull_request) Failing after 1m43s
2026-02-13 19:05:33 +00:00
5 changed files with 3 additions and 12 deletions

View File

@@ -60,7 +60,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
python-version: '3.14'
- name: Install GuardDog
run: |

View File

@@ -29,7 +29,7 @@ ENV SITE_URL=https://www.alexlebens.dev
ENV DIRECTUS_URL=https://directus.alexlebens.net
ENV PORT=4321
LABEL version="2.8.0"
LABEL version="2.7.0"
LABEL description="Astro based personal website"
EXPOSE $PORT

View File

@@ -1,7 +1,7 @@
{
"name": "site-profile",
"type": "module",
"version": "2.8.0",
"version": "2.7.0",
"homepage": "https://www.alexlebens.dev",
"bugs": {
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",

View File

@@ -19,8 +19,6 @@ interface Props {
const { title, description = 'Alex Lebens', ogImage, lang = 'en', structuredData } = Astro.props;
const rybbitSiteId = "YOUR_SITE_ID";
const global = await directus.request(readSingleton('site_global'));
const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
---
@@ -55,12 +53,6 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
}
window.localStorage.setItem('theme', theme);
</script>
<!-- Rybbit Tracking Snippet -->
<script
src="https://rybbit.alexlebens.dev/api/script.js"
data-site-id={global.rybbit_site_id}
defer
></script>
</head>
<body class="bg-stone-200 selection:bg-yellow-400 selection:text-neutral-700 dark:bg-stone-700">
<div class="mx-auto w-full max-w-(--breakpoint-2xl) grow px-4 sm:px-6 lg:px-8">

View File

@@ -8,7 +8,6 @@ export type Global = {
initials: string;
email: string;
site_url: string;
rybbit_site_id: string;
logo: string;
portrait: string;
portrait_alt: string;