Files
starter-workflows/ci/docker-image.yml
Christopher Schleiden 6179f79b78
Validate Data / sync (push) Has been cancelled
Remove properties.
2020-05-26 13:31:30 -07:00

25 lines
443 B
YAML

---
name: Docker image
description: Build a Docker image to deploy, run, or push to a registry.
categories: [Dockerfile]
iconName: docker
---
name: Docker Image CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)