Skip to content

Commit ac66d76

Browse files
committed
[mod] add docker push workflow
1 parent a2684e4 commit ac66d76

File tree

3 files changed

+56
-2
lines changed

3 files changed

+56
-2
lines changed

.github/workflows/docker-push.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525

2626
# End of https://www.toptal.com/developers/gitignore/api/go
2727
dist/
28+
dockerhub_ratelimit_exporter

Makefile

+24-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,30 @@
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+
123
build:
224
go build
325
test:
4-
go test -v
26+
go test -v -race ./...
527
run:
6-
go run *.go
28+
go run .
729
help:
830
go run *.go -h

0 commit comments

Comments
 (0)