Skip to content

Commit

Permalink
Create docker.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Aug 24, 2022
1 parent 140747b commit e038f47
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker.yaml
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 .

- name: docker push
run: docker push groestlcoin/lightning:v0.12.0

0 comments on commit e038f47

Please sign in to comment.