Skip to content

Commit 16ec00b

Browse files
committed
Publish on docker
1 parent 4a2d1bd commit 16ec00b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/docker.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Docker Image CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: docker login
14+
uses: docker/login-action@v2
15+
with:
16+
username: ${{ secrets.DOCKER_USERNAME }}
17+
password: ${{ secrets.DOCKER_TOKEN }}
18+
19+
- name: build the Docker image
20+
run: docker build -t groestlcoin/lightning:v24.08 .
21+
22+
- name: docker push
23+
run: docker push groestlcoin/lightning:v24.08

0 commit comments

Comments
 (0)