mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-19 13:55:40 -04:00
Fix release workflow (#2668)
* Fix frontend bundle upload - Update pnpm * Revert incorrect removal of fontenf packaging job * Fix tauri not building updater bundles * Ensure release action is executed when PRs modify the publish-artifacts action * Fix unused argument for patchTauri function * Couple for format fixes * tauri requires building the app bundle to build the updater
This commit is contained in:
committed by
GitHub
parent
f2f39a2a46
commit
287a809de0
@@ -1,5 +1,4 @@
|
||||
import type { ClientRect, Modifier } from '@dnd-kit/core';
|
||||
import { DragOverlay as DragOverlayPrimitive } from '@dnd-kit/core';
|
||||
import { DragOverlay as DragOverlayPrimitive, type ClientRect, type Modifier } from '@dnd-kit/core';
|
||||
import { getEventCoordinates } from '@dnd-kit/utilities';
|
||||
import clsx from 'clsx';
|
||||
import { memo, useEffect, useRef } from 'react';
|
||||
|
||||
@@ -2,16 +2,18 @@ import { useCallback, useEffect, useMemo, useRef, useState, type RefObject } fro
|
||||
import { useDebouncedCallback } from 'use-debounce';
|
||||
import { proxy, snapshot, subscribe, useSnapshot } from 'valtio';
|
||||
import { z } from 'zod';
|
||||
import type {
|
||||
ExplorerItem,
|
||||
ExplorerLayout,
|
||||
ExplorerSettings,
|
||||
FilePath,
|
||||
Location,
|
||||
NodeState,
|
||||
Tag
|
||||
import {
|
||||
ObjectKindEnum,
|
||||
type ExplorerItem,
|
||||
type ExplorerLayout,
|
||||
type ExplorerSettings,
|
||||
type FilePath,
|
||||
type Location,
|
||||
type NodeState,
|
||||
type Ordering,
|
||||
type OrderingKeys,
|
||||
type Tag
|
||||
} from '@sd/client';
|
||||
import { ObjectKindEnum, type Ordering, type OrderingKeys } from '@sd/client';
|
||||
|
||||
import { createDefaultExplorerSettings } from './store';
|
||||
import { uniqueId } from './util';
|
||||
|
||||
Reference in New Issue
Block a user