Merge pull request #9 from Aikufurr/master

Docker ARM64/AMD64 image workflow
This commit is contained in:
Eugene Burmakin 2024-04-07 17:10:06 +02:00 committed by GitHub
commit dd77983ec2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

35
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,35 @@
name: Deploy Production
on:
workflow_dispatch:
jobs:
build-and-push-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
registry: ${{ secrets.DOCKER_REGISTRY }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_REGISTRY }}/freika/dawarich:latest,${{ secrets.DOCKER_REGISTRY }}/freika/dawarich:${{ github.run_number }}
platforms: linux/amd64,linux/arm64/v8
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache