summaryrefslogtreecommitdiff
path: root/.github/workflows/docker.yml
blob: a53ac5c206d420fbbaad962e12fedf256263d016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
name: Docker
on:
  push:
    branches:
      - master
  pull_request:
jobs:
  build:
    name: Build Image
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      - name: Build
        run: docker build -t tube .