Skip to content

Updated agent directives #8

Updated agent directives

Updated agent directives #8

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build and tag the Docker image
run: |
docker build . --file Dockerfile --tag 4o-agent:latest
docker tag 4o-agent:latest thethinkmachine/4o-agent:latest
- name: Push the Docker image
run: docker push thethinkmachine/4o-agent:latest