disable caching in build and metadata relay workflows (#309)

this pr disables caching in build and metadata relay workflows because it doesn't actually make the workflows any faster.
This commit is contained in:
Maximilian Dorninger
2025-12-21 20:53:47 +01:00
committed by GitHub
parent b87a23b5b4
commit c7c6158a3f
3 changed files with 4 additions and 10 deletions

View File

@@ -3,10 +3,10 @@
import { getContext, onMount } from 'svelte';
import client from '$lib/api';
import { isSemver, semverIsGreater } from '$lib/utils.ts';
import { env } from '$env/dynamic/public';
import { resolve } from '$app/paths';
import AnimatedCard from '$lib/components/stats/animated-card.svelte';
let { showCount, moviesCount }: { showCount: number; moviesCount: number } = $props();
import { PUBLIC_VERSION } from '$env/static/public';
let episodeCount: Promise<number> = $state(
client.GET('/api/v1/tv/episodes/count').then((res) => {
@@ -19,7 +19,7 @@
})
);
let installedVersion: string | undefined = env.PUBLIC_VERSION?.replace(/v*/, '');
let installedVersion: string | undefined = PUBLIC_VERSION.replace(/v*/, '');
let releaseUrl: string | null = $state(null);
let newestVersion: string | null = $state(null);