Skip to content

refactor: separate out ChatContext from the Aichat specific format #16

refactor: separate out ChatContext from the Aichat specific format

refactor: separate out ChatContext from the Aichat specific format #16

name: Docker
on:
workflow_dispatch:
push:
branches:
- "main"
tags:
- "v*"
# This is how to build on every PR
# The workflow is written so that it can test to see if PRs successfully build.
# pull_request:
# branches:
# - "main"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: arcuru/chaz
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD}}
- name: Determine Platforms
id: platforms
run: |
if [[ ${{ github.ref }} == refs/tags/v* ]]; then
echo "platforms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
else
echo "platforms=linux/amd64" >> $GITHUB_OUTPUT
fi
- name: Build and Push
uses: docker/build-push-action@v6
with:
context: .
platforms: ${{ steps.platforms.outputs.platforms }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}