File tree Expand file tree Collapse file tree 2 files changed +53
-0
lines changed
Expand file tree Collapse file tree 2 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 1+ # Git files
2+ .git
3+ .gitignore
4+ .github
5+
6+ # Documentation
7+ README.md
8+ * .md
9+ docs /
10+
11+ # Development files
12+ .vscode
13+ .idea
14+ * .swp
15+ * .swo
16+ * ~
17+
18+ # OS files
19+ .DS_Store
20+ Thumbs.db
21+
22+ # Build artifacts
23+ godns
24+ web /out
25+ web /.next
26+ web /node_modules
27+ web /dist
28+
29+ # Go build cache
30+ .cache
31+
32+ # Test files
33+ * _test.go
34+ testdata /
35+
36+ # CI/CD files (except Dockerfile)
37+ .travis.yml
38+ .circleci /
39+ .gitlab-ci.yml
40+
41+ # Local development
42+ .env
43+ .env.local
44+ config.json
45+ config.yaml
46+ * .log
47+
48+ # Temporary files
49+ * .tmp
50+ * .temp
51+ # Temporary config files
52+ config.json
Original file line number Diff line number Diff line change 5353 VERSION=v${{ steps.tag.outputs.tag }}
5454 cache-from : type=gha
5555 cache-to : type=gha,mode=max
56+ provenance : false
You can’t perform that action at this time.
0 commit comments