Files
starter-workflows/ci/docker-image.yml
T
Chris Patterson b13ec89084 Initial formatting
2019-08-06 16:37:30 -07:00

15 lines
254 B
YAML

name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)