Skip to content

Commit 67a0a75

Browse files
committed
Add Docker workflow
1 parent 788787e commit 67a0a75

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Docker Image CI
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
branches: ["**"]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v6
15+
- name: Build the Docker image
16+
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# LBRY Daemon
22

33
[![Go](https://github.com/LBRYFoundation/lbry-daemon/actions/workflows/go.yml/badge.svg)](https://github.com/LBRYFoundation/lbry-daemon/actions/workflows/go.yml)
4+
[![Docker Image CI](https://github.com/LBRYFoundation/lbry-daemon/actions/workflows/docker-image.yml/badge.svg)](https://github.com/LBRYFoundation/lbry-daemon/actions/workflows/docker-image.yml)
45
[![Codecov](https://codecov.io/gh/LBRYFoundation/lbry-daemon/graph/badge.svg)](https://codecov.io/gh/LBRYFoundation/lbry-daemon)
56
![Snapcraft Version](https://img.shields.io/snapcraft/v/lbry-daemon/latest/stable?logo=snapcraft)
67
![WinGet Package Version](https://img.shields.io/winget/v/LBRY.Daemon)

0 commit comments

Comments
 (0)