Files
jiggablend/.gitignore
Justin Harms 7440511740
Some checks failed
Release Tag / release (push) Failing after 46s
Add GoReleaser configuration and update Makefile for streamlined builds
- Introduced .goreleaser.yaml for automated release management.
- Updated Makefile to utilize GoReleaser for building the jiggablend binary.
- Added new workflows for release tagging and pull request checks in Gitea.
- Updated dependencies in go.mod and go.sum, including new packages for versioning.
- Enhanced .gitignore to exclude build artifacts in the dist directory.
2026-01-02 14:28:03 -06:00

83 lines
825 B
Plaintext

# Binaries
/bin/
/manager
/runner
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool
*.out
# Dependency directories
/vendor/
# Go workspace file
go.work
# Database files
*.db
*.db-shm
*.db-wal
jiggablend.db
jiggablend.db.wal
jiggablend.db-shm
jiggablend.db-journal
# Log files
*.log
logs/
# Secrets and configuration
runner-secrets.json
runner-secrets-*.json
*.secret
.env
.env.local
# Storage directories
jiggablend-storage/
jiggablend-workspaces/
# Node.js
web/node_modules/
web/dist/
web/.vite/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Build artifacts
*.o
*.a
*.so
/dist/
# Temporary files
*.tmp
*.temp
/tmp/
# Logs
*.log
/logs/
# OS files
Thumbs.db
.DS_Store