This repository was archived by the owner on Apr 24, 2026. It is now read-only.
Add WebSocket import and create .gitignore for code-search directory #3
This file contains hidden or 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 and Push agent-manager Image (Multi-Arch) | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: false | |
| - name: Set up QEMU for multi-arch builds | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to GHCR | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push multi-platform | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: ./agent-manager | |
| file: ./agent-manager/Dockerfile | |
| platforms: linux/amd64,linux/arm64/v8 | |
| push: true | |
| tags: ghcr.io/anentrypoint/agent-manager:latest | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |