excalidraw/.github/workflows/build-docker.yml
Guillaume Grossetie 2fae2d3ea5 Add a GitHub Actions to build the Docker image
Make sure that "docker build" is working on every pull request before landing on master.
2020-11-07 12:33:29 +01:00

15 lines
221 B
YAML

name: Build Docker image
on:
push:
branches:
- master
pull_request:
jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: docker build -t excalidraw .