Skip to content

Added Arm64 Image Building #4

Added Arm64 Image Building

Added Arm64 Image Building #4

Workflow file for this run

name: Build Arm64 Image
on:
push:
paths:
- 'Dockerfile'
jobs:
build:
runs-on: arm64-manylinux
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