Skip to content

Use gpt-4o

Use gpt-4o #15

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag biunovich/simple_openai_telegram_bot
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: biunovich/simple_openai_telegram_bot
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}