Skip to content

Build Arm64 Image

Build Arm64 Image #8

Workflow file for this run

name: Build Arm64 Image
on:
workflow_dispatch:
jobs:
build:
runs-on: arm64-server
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
push: true
tags: ghcr.io/${{ github.repository }}/arm64:latest