mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 08:54:12 +02:00
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:
committed by
GitHub
parent
b87a23b5b4
commit
c7c6158a3f
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user