Create docker-image.yml

Former-commit-id: 13a63d139757d6cd291d2268bc961d69eb4a00f2
pull/186/head
Eternal Reclaimer 2 years ago committed by GitHub
parent efde4b7b8c
commit 6f22dae256

@ -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@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
Loading…
Cancel
Save