Skip to content

beelzebub arm64

beelzebub arm64 #40

Workflow file for this run

name: beelzebub arm64
on:
workflow_dispatch:
schedule:
- cron: "5 8 * * 0"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout beelzebub Repository
uses: actions/checkout@v4
with:
repository: mariocandela/beelzebub
-
name: Change build to arm64
run: |
sed -i 's/GOARCH=amd64/GOARCH=arm64/g' Dockerfile
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push (MAIN)
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/arm64
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/beelzebub:latest