We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4548ee6 commit 2eb8bf0Copy full SHA for 2eb8bf0
.github/workflows/docker-image.yml
@@ -0,0 +1,18 @@
1
+name: Docker Image CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "release/*" ]
6
7
+jobs:
8
9
+ build:
10
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - name: Build the Docker image
16
+ run: docker build . --file Dockerfile --tag rtler/highdns:$(date +%s)
17
+ - name: Build and push Docker images
18
+ uses: docker/build-push-action@v3.2.0
0 commit comments