Skip to content

Build Dev Container (ghcr only) #15102

Build Dev Container (ghcr only)

Build Dev Container (ghcr only) #15102

Workflow file for this run

name: Build Dev Container (ghcr only)
on:
workflow_dispatch:
inputs:
sha:
description: "The SHA from chia-blockchain to use when building the image"
required: true
permissions:
id-token: write
contents: read
packages: write
concurrency:
group: ${{ github.event.inputs.sha }}
cancel-in-progress: true
jobs:
docker_build_and_publish_dev:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/chia-network/chia/dev
tags: |
type=raw,value=${{ github.event.inputs.sha }}
- name: Build docker image and push to github packages
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
no-cache: true
push: true
build-args: |
"COMMIT=${{ github.event.inputs.sha }}"
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}