Skip to content

test: add node option to prioritize ipv4 over ipv6 #6

test: add node option to prioritize ipv4 over ipv6

test: add node option to prioritize ipv4 over ipv6 #6

name: 🐳 On Master - Build and Test Docker Image
on:
push:
branches: ["master"]
jobs:
build-image:
name: 🏗️ Build Image
runs-on: ubuntu-latest
steps:
- name: 🐧 Checkout
uses: actions/checkout@v3
- name: 📦 Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🐳 Login to docker.01-edu.org Registry
uses: docker/login-action@v2
with:
registry: docker.01-edu.org
username: ${{ secrets.USER_DOCKER_01EDU_ORG }}
password: ${{ secrets.SECRET_DOCKER_01EDU_ORG }}
- name: 🏗️ Build the Branch-Blockchain Docker image
run: |
docker build tests/ --file tests/Dockerfile --tag ghcr.io/01-edu/test-blockchain:latest
docker push ghcr.io/01-edu/test-blockchain:latest