Skip to content

refact: docker build #20

refact: docker build

refact: docker build #20

Workflow file for this run

name: Build
on:
push:
tags:
- 'v*'
branches:
- master
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up QEMU for multi-platform support
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
erfjab/holderbot:latest # Always latest stable release
erfjab/holderbot:${{ github.ref }} # Tag for the latest release
erfjab/holderbot:ga # For the latest commit (development mode)
erfjab/holderbot:${{ github.sha }} # Latest commit SHA
- name: Create GA Tag
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/')
run: |
echo "Creating GA tag for latest commit"
git tag ga
git push origin ga