Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 6ae7af4

Browse files
authored
Create docker-image.yml
1 parent 0c5b231 commit 6ae7af4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/docker-image.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
tags:
6+
- "*.*.*.*"
7+
8+
jobs:
9+
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Build the Docker image
17+
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)

0 commit comments

Comments
 (0)