Browse Source

Build Docker image on push in CI

image-size-badge
Luke Childs 5 years ago
parent
commit
c7e78094ad
  1. 14
      .github/workflows/ci.yml

14
.github/workflows/ci.yml

@ -0,0 +1,14 @@
name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the Docker image
run: docker build -t lukechilds/bitcoind .
Loading…
Cancel
Save