update
Some checks failed
Deploy / publish-windows (push) Failing after 23s

This commit is contained in:
2025-12-23 22:42:04 +06:00
parent 3006a82a0f
commit c573d2277a
9 changed files with 952 additions and 7 deletions

2
client/.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
/.yarn/releases/** binary
/.yarn/plugins/** binary

1
client/.gitignore vendored
View File

@@ -23,6 +23,7 @@ logs
.env.* .env.*
!.env.example !.env.example
.pnp.*
.yarn/* .yarn/*
!.yarn/patches !.yarn/patches
!.yarn/plugins !.yarn/plugins

Binary file not shown.

942
client/.yarn/releases/yarn-4.12.0.cjs vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -1 +1,3 @@
nodeLinker: node-modules nodeLinker: node-modules
yarnPath: .yarn/releases/yarn-4.12.0.cjs

View File

@@ -3,7 +3,7 @@ FROM node:lts as builder
WORKDIR /app WORKDIR /app
RUN corepack enable yarn && yarn set version stable # RUN corepack enable yarn && yarn set version stable
COPY package.json yarn.lock .yarnrc.yml ./ COPY package.json yarn.lock .yarnrc.yml ./
@@ -36,6 +36,8 @@ RUN cargo install --locked cargo-xwin
RUN yarn tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc RUN yarn tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc
RUN ls -la src-tauri/target
RUN node scripts/generate-updater.mjs RUN node scripts/generate-updater.mjs
# === Artifacts === # === Artifacts ===

View File

@@ -29,7 +29,7 @@
"vue": "^3.5.22", "vue": "^3.5.22",
"vue-router": "^4.5.1" "vue-router": "^4.5.1"
}, },
"packageManager": "yarn@4.10.3", "packageManager": "yarn@4.12.0",
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^5.4.1", "@antfu/eslint-config": "^5.4.1",
"@primevue/nuxt-module": "^4.4.0", "@primevue/nuxt-module": "^4.4.0",

View File

@@ -17,7 +17,7 @@ const version = tauriConf.version
const SIG_FILE = path.resolve( const SIG_FILE = path.resolve(
__dirname, __dirname,
`../src-tauri/target/release/bundle/nsis/chad_${version}_x64-setup.exe.sig`, `../src-tauri/target/x86_64-pc-windows-msvc/release/bundle/nsis/chad_${version}_x64-setup.exe.sig`,
) )
const signature = fs.readFileSync(SIG_FILE, 'utf8').trim() const signature = fs.readFileSync(SIG_FILE, 'utf8').trim()

View File

@@ -1,4 +0,0 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1