Update release #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push on develop - Build & push them to docker hub | |
on: | |
push: | |
branches: | |
- "development" | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
# ================================================================================================================ | |
- name: Retrieve the sources | |
uses: actions/checkout@v3 | |
# ================================================================================================================ | |
- name: Docker Hub login | |
uses: docker/login-action@v2.1.0 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
# ================================================================================================================ | |
- name: Build the images | |
run: | | |
docker build lnd/ -t royllo/lnd:latest | |
docker build tapd/ -t royllo/tapd:latest | |
# ================================================================================================================ | |
- name: Push the docker images to Docker hub | |
run: | | |
docker push royllo/lnd:latest | |
docker push royllo/tapd:latest |