Skip to content

fix: bump sei-config to pick up giga_executor TOML key fix #135

fix: bump sei-config to pick up giga_executor TOML key fix

fix: bump sei-config to pick up giga_executor TOML key fix #135

Workflow file for this run

name: Containerize
on:
push:
branches:
- 'main'
tags:
- 'v*'
workflow_run:
workflows: [ Releaser ]
types:
- completed
pull_request:
workflow_dispatch:
inputs:
ref:
description: 'Git ref of the commit to publish'
required: true
release:
types:
- published
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || github.sha }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{raw}}
type=ref,event=branch,enable=${{ inputs.ref == '' }}
type=sha,format=long
type=raw,value=${{ inputs.ref }},enable=${{ inputs.ref != '' }}
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}