Skip to content

fix: retrieving chats without tools #43

fix: retrieving chats without tools

fix: retrieving chats without tools #43

Workflow file for this run

name: publish
on:
push:
tags:
- '*'
release:
types: [ published ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
name: publish image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
deploy:
needs: build-and-push-image
name: deploy image
runs-on: ubuntu-latest
steps:
- uses: appleboy/[email protected]
with:
host: ${{ secrets.DEPLOY_HOST }}
username: ${{ secrets.DEPLOY_USERNAME }}
key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
proxy_host: ${{ secrets.DEPLOY_JUMP_HOST }}
proxy_username: ${{ secrets.DEPLOY_JUMP_USERNAME }}
proxy_key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
script: |
cd ${{ secrets.DEPLOY_PATH }}
docker compose pull
docker compose up -d