19 lines
382 B
YAML
19 lines
382 B
YAML
# This workflow will do clean build of the docker image
|
|
|
|
name: Docker Image CI (also tests build)
|
|
|
|
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 rofl256/whiteboard:$(date +%s)
|