mirror of https://github.com/VERT-sh/VERT.git
ci: add docker image workflow
This commit is contained in:
parent
a55d5f41a9
commit
437157e18d
|
|
@ -0,0 +1,14 @@
|
|||
name: Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build the Docker image
|
||||
run: docker build . --file Dockerfile --tag VERT-sh/vert:$(date +%s)
|
||||
Loading…
Reference in New Issue