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

chore: fixes and improvements #26

chore: fixes and improvements

chore: fixes and improvements #26

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
build-and-push:
name: Build and Push Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
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@v5
with:
push: true
tags: koorinc/genesis:${{ github.ref_name }}