Skip to content

Commit

Permalink
Tag docker
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Dec 13, 2023
1 parent e5d129c commit e6617ee
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docker Image CI

on: [push, pull_request]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: docker login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: build the Docker image
run: docker build -t groestlcoin/lightning:v23.11 .

- name: docker push
run: docker push groestlcoin/lightning:v23.11

0 comments on commit e6617ee

Please sign in to comment.