mirror of
https://github.com/docker/login-action.git
synced 2026-05-14 14:28:01 +00:00
Add Docker Image CI workflow
Signed-off-by: 阿謃 <svipax001@zohomail.cn>
This commit is contained in:
parent
9f4a8ea54e
commit
764fd3998c
18
.github/workflows/docker-image.yml
vendored
Normal file
18
.github/workflows/docker-image.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build the Docker image
|
||||
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
|
||||
Loading…
Reference in New Issue
Block a user