File tree 3 files changed +56
-2
lines changed
3 files changed +56
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : docker-push
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' v*'
7
+
8
+ jobs :
9
+ push :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+
14
+ - name : Login to DockerHub
15
+ uses : docker/login-action@v1
16
+ with :
17
+ username : ${{ secrets.DOCKERHUB_USERNAME }}
18
+ password : ${{ secrets.DOCKERHUB_TOKEN }}
19
+
20
+ - id : get_version
21
+ uses : battila7/get-version-action@v2
22
+
23
+ - name : Build and Push
24
+ env :
25
+ REPOSITORY : dohq/dockerhub_ratelimit_exporter
26
+ VERSION : ${{ steps.get_version.outputs.version-without-v }}
27
+ DOCKER_BUILDKIT : 1
28
+ run : |
29
+ make container_build
30
+ make container_cache
31
+ make container_push
Original file line number Diff line number Diff line change 25
25
26
26
# End of https://www.toptal.com/developers/gitignore/api/go
27
27
dist /
28
+ dockerhub_ratelimit_exporter
Original file line number Diff line number Diff line change
1
+ IMAGE_NAME =$(REPOSITORY ) :$(VERSION )
2
+ LATEST =$(REPOSITORY ) :latest
3
+ CACHE =$(REPOSITORY ) :cache-latest
4
+
5
+ container_build :
6
+ docker build --cache-from=$(CACHE ) \
7
+ --build-arg=BUILDKIT_INLINE_CACHE=1 \
8
+ -t $(IMAGE_NAME ) \
9
+ -t $(LATEST ) .
10
+
11
+ container_push :
12
+ docker push $(IMAGE_NAME )
13
+ docker push $(CACHE )
14
+
15
+ # If necessary, add --target
16
+ container_cache :
17
+ docker build \
18
+ --target=builder \
19
+ --build-arg=BUILDKIT_INLINE_CACHE=1 \
20
+ -t $(CACHE ) .
21
+ docker push $(CACHE )
22
+
1
23
build :
2
24
go build
3
25
test :
4
- go test -v
26
+ go test -v -race ./...
5
27
run :
6
- go run * .go
28
+ go run .
7
29
help :
8
30
go run * .go -h
You can’t perform that action at this time.
0 commit comments