Files
starter-workflows/ci/docker-image.yml
T
2019-07-29 09:38:23 -07:00

16 lines
266 B
YAML

on: [push]
name: Docker image
jobs:
build:
name: 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)