Skip to content

Commit a2ec15c

Browse files
committed
Github action to publish to Docker Hub
1 parent 90fb0fb commit a2ec15c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
name: Publish to Docker Hub
3+
4+
on:
5+
push:
6+
tags:
7+
- '*'
8+
9+
jobs:
10+
11+
publish:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: Build the image
17+
run: docker build -t mendhak/http-https-echo:latest .

0 commit comments

Comments
 (0)