Skip to content

Update openclaw to version 2026.2.3 (#1) #5

Update openclaw to version 2026.2.3 (#1)

Update openclaw to version 2026.2.3 (#1) #5

Workflow file for this run

name: Docker Build and Push
on:
push:
tags:
- "*"
jobs:
build:
name: Build and push to GitHub Container Registry
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Set TAG
run: |
echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.repository_owner }}" --password-stdin
- name: Setup QEMU with credential support (fixes sudo in cross-arch builds)
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes --credential yes
- name: Setup Docker buildx
run: docker buildx create --use
- name: Run Docker buildx
run: |
docker buildx build \
--platform linux/amd64,linux/arm64 \
--tag ghcr.io/${{ github.repository }}:${{ env.TAG }} \
--push .