Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/erfjab/migration
Browse files Browse the repository at this point in the history
  • Loading branch information
erfjab committed Oct 25, 2024
2 parents 3e39a38 + 621efc6 commit 690cdbe
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build

on:
push:
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/migration:latest
erfjab/migration:${{ github.sha }}

0 comments on commit 690cdbe

Please sign in to comment.