mirror of
https://github.com/ACINQ/eclair.git
synced 2025-02-23 14:40:34 +01:00
- link to plugins repository - remove android mention for eclair - update other implementations (renamed) - update docker CI action versions - missing eclair-cli APIs in help
25 lines
465 B
YAML
25 lines
465 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: docker login
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: build the Docker image
|
|
run: docker build -t acinq/eclair .
|
|
|
|
- name: docker push
|
|
run: docker push acinq/eclair
|