Skip to content

chore: update agent tools and clarify update workflow #835

chore: update agent tools and clarify update workflow

chore: update agent tools and clarify update workflow #835

Workflow file for this run

name: build docker images
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: login registry
run: echo ${{secrets.DOCKER_HUB_PASSWORD}} | docker login -u wizawu --password-stdin
- name: build agent image
run: docker build docker/agent -t wizawu/agent:latest
- name: push agent image
run: docker push wizawu/agent:latest