mirror of
https://github.com/yuaotian/go-cursor-help.git
synced 2025-06-07 20:12:06 +08:00

- Added Go workspace and cache directories to .gitignore to prevent unnecessary files from being tracked. - Introduced a cleanup step in the auto-tag workflow to remove temporary Go directories and cached files, improving workspace management. - Updated GOPATH, GOCACHE, and GOMODCACHE paths in the workflow to use temporary directories for better isolation during builds.
42 lines
381 B
Plaintext
42 lines
381 B
Plaintext
# Compiled binary
|
|
/cursor-id-modifier
|
|
/cursor-id-modifier.exe
|
|
|
|
# Build output directories
|
|
bin/
|
|
dist/
|
|
|
|
# Go specific
|
|
go.sum
|
|
go/
|
|
.cache/
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build and release artifacts
|
|
releases/
|
|
*.syso
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*.test
|
|
*.out
|
|
coverage.txt
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*~
|
|
*.bak
|
|
*.log |