Skip to content

Commit bf36b43

Browse files
committed
refactor: Github workflows
1 parent 05043bc commit bf36b43

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

.dockerignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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

.github/workflows/docker-image.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,4 @@ jobs:
5353
VERSION=v${{ steps.tag.outputs.tag }}
5454
cache-from: type=gha
5555
cache-to: type=gha,mode=max
56+
provenance: false

0 commit comments

Comments
 (0)