Skip to content

Fixed receiving ordered lists from the LLM. #6

Fixed receiving ordered lists from the LLM.

Fixed receiving ordered lists from the LLM. #6

Workflow file for this run

name: Build
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Restore tools
run: dotnet tool restore
- name: Install Docker-Compose
uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.14.2'
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ vars.DOCKERHUB_REGISTRY }}/${{ vars.DOCKERHUB_IMAGE }}
tags: |
type=ref,event=branch
type=ref,event=pr
- name: Build and push
run: dotnet cake docker.cake --target Push --tag ${{ steps.meta.outputs.tags }}