Compare commits

...

2 Commits
rm ... main

Author SHA1 Message Date
GyDi
9df1115380 chore: fix check 2023-11-03 16:00:34 +08:00
GyDi
f22e360cbb chore: fix check script 2023-11-03 15:52:36 +08:00
2 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ jobs:
- name: Yarn install and check - name: Yarn install and check
run: | run: |
yarn install --network-timeout 1000000 --frozen-lockfile yarn install --network-timeout 1000000 --frozen-lockfile
yarn run check yarn run check --force
- name: Tauri build - name: Tauri build
uses: tauri-apps/tauri-action@v0 uses: tauri-apps/tauri-action@v0

View File

@ -18,7 +18,7 @@ const SIDECAR_HOST = execSync("rustc -vV")
const CLASH_STORAGE_PREFIX = "https://release.dreamacro.workers.dev/"; const CLASH_STORAGE_PREFIX = "https://release.dreamacro.workers.dev/";
const CLASH_URL_PREFIX = const CLASH_URL_PREFIX =
"https://github.com/Dreamacro/clash/releases/download/premium/"; "https://github.com/Dreamacro/clash/releases/download/premium/";
const CLASH_LATEST_DATE = "2023.08.17"; const CLASH_LATEST_DATE = "latest";
const CLASH_MAP = { const CLASH_MAP = {
"win32-x64": "clash-windows-amd64", "win32-x64": "clash-windows-amd64",
@ -300,7 +300,7 @@ const resolveGeoIP = () =>
}); });
const tasks = [ const tasks = [
{ name: "clash", func: resolveClash, retry: 5 }, { name: "clash", func: () => resolveSidecar(clashS3()), retry: 5 },
{ name: "clash-meta", func: () => resolveSidecar(clashMeta()), retry: 5 }, { name: "clash-meta", func: () => resolveSidecar(clashMeta()), retry: 5 },
{ name: "wintun", func: resolveWintun, retry: 5, winOnly: true }, { name: "wintun", func: resolveWintun, retry: 5, winOnly: true },
{ name: "service", func: resolveService, retry: 5, winOnly: true }, { name: "service", func: resolveService, retry: 5, winOnly: true },