Browse Source

test

master
Damian Mee 5 years ago
parent
commit
9a5f9743a6
No known key found for this signature in database GPG Key ID: 2F961EAB8789725D
  1. 9
      .github/main.workflow
  2. 14
      .github/workflows/dockerimage.yml

9
.github/main.workflow

@ -0,0 +1,9 @@
workflow "build" {
on = "push"
resolves = ["GitHub Action for Docker"]
}
action "GitHub Action for Docker" {
uses = "actions/docker/cli@86ab5e854a74b50b7ed798a94d9b8ce175d8ba19"
runs = "docker build -t meedamian/bitcoind 0.17/"
}

14
.github/workflows/dockerimage.yml

@ -0,0 +1,14 @@
name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build the Docker image
run: docker build . --file 0.17/Dockerfile --tag bitcoind:$(date +%s)
Loading…
Cancel
Save