Build Dev Container (ghcr only) #16227
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v6 | |
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 }} |