Skip to content

Fixed Docker Image

Fixed Docker Image #5

Workflow file for this run

name: Build Arm64 Image
on:
push:
branches: [ master ]
paths:
- '.github/workflows/build_clang.yml'
- '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