Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build-agent-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ name: Build and Push Agent Image

on:
push:
branches:
- main
tags:
- 'v*'
workflow_dispatch:
Expand All @@ -26,9 +28,7 @@ env:

jobs:
build-and-push:
# Use an arm64 runner if available in your org; otherwise this falls back to
# ubuntu-22.04 + QEMU (slow). Swap to your self-hosted arm64 label as needed.
runs-on: ubuntu-22.04-arm64
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
Expand All @@ -54,6 +54,9 @@ jobs:
type=raw,value=latest,enable={{is_default_branch}}
type=sha,format=short

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down
Loading