This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
Update README.md #27
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: Docker Image CI | |
on: | |
push: | |
branches: ["main"] | |
env: | |
UPSTREAM_VERSION: v4.3.0 | |
NETWORK: chiado | |
jobs: | |
push_to_registry: | |
name: Build and Push Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Cache Docker layers | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Loging to Dockerhub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
# {upstream_image}{testnet}{version_upstream} | |
- run: > | |
docker build . | |
--build-arg UPSTREAM_VERSION=${{ env.UPSTREAM_VERSION }} | |
--tag gnosischain/lighthouse-beacon:${{ env.UPSTREAM_VERSION }}-${{ env.NETWORK }} | |
--tag gnosischain/lighthouse-beacon:latest-${{ env.NETWORK }} | |
-f beacon.Dockerfile | |
- run: > | |
docker build . | |
--build-arg UPSTREAM_VERSION=${{ env.UPSTREAM_VERSION }} | |
--tag gnosischain/lighthouse-validator:${{ env.UPSTREAM_VERSION }}-${{ env.NETWORK }} | |
--tag gnosischain/lighthouse-validator:latest-${{ env.NETWORK }} | |
-f validator.Dockerfile | |
- run: | | |
docker push gnosischain/lighthouse-beacon:${{ env.UPSTREAM_VERSION }}-${{ env.NETWORK }} | |
docker push gnosischain/lighthouse-beacon:latest-${{ env.NETWORK }} | |
docker push gnosischain/lighthouse-validator:${{ env.UPSTREAM_VERSION }}-${{ env.NETWORK }} | |
docker push gnosischain/lighthouse-validator:latest-${{ env.NETWORK }} |