Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

fix: fix containers

fix: fix containers #3

name: Docker Publish
on:
push:
branches:
- main
jobs:
build-and-push:
name: Build and Push Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build docker base image
id: build-base-image
run: |
make build-base
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
push: true
tags: koorinc/genesis:latest