Skip to content

Docker amd64

Docker amd64 #10

name: Docker amd64
on:
push:
workflow_run:
workflows: ["circtools CI"]
types:
- completed
jobs:
build-and-push-docker-image:
runs-on: ubuntu-24.04
name: Docker amd64
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3.8.0
- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image and push to Docker Hub and GitHub Container Registry
uses: docker/build-push-action@v6.13.0
with:
context: ./
cache-from: type=gha
cache-to: type=gha,mode=max
provenance: false
platforms: linux/amd64
outputs: type=image,name=target
tags: |
ghcr.io/jakobilab/circtools/circtools:latest
push: ${{ github.ref == 'refs/heads/master' }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}