40fcd1b469
- tauri-action globs for tauri.conf.json honoring .gitignore; the global *.json rule hid it (force-added but still ignore-matched), so detection failed with 'Failed to resolve Tauri path' and it tried to re-init. Negate it like the cuda overlay already is. - rename uploadUpdaterJson -> includeUpdaterJson (valid v0.6.2 input).
49 lines
862 B
Plaintext
49 lines
862 B
Plaintext
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
node_modules
|
|
dist
|
|
src-tauri/target
|
|
dist-ssr
|
|
*.local
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
*.local.*
|
|
# Local patch artifacts
|
|
*.diff
|
|
*.patch
|
|
|
|
# Local staging area
|
|
/staging
|
|
|
|
# Misc
|
|
*.py
|
|
*.json
|
|
|
|
*.pyc
|
|
|
|
# Bundled CUDA runtime DLLs for the CUDA build (copied from the toolkit
|
|
# locally; ~600 MB, never committed). See RELEASE_PLAN.md "CUDA release variant".
|
|
src-tauri/cuda-redist/
|
|
|
|
# Keep the Tauri configs tracked despite the *.json rule above. tauri.conf.json
|
|
# must also be un-ignored so tauri-action can find it: it globs for the config
|
|
# honoring .gitignore, and an ignored config makes the release build fail with
|
|
# "Failed to resolve Tauri path".
|
|
!src-tauri/tauri.conf.json
|
|
!src-tauri/tauri.cuda.conf.json
|