refactor: move summarization chain to chains package #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Chatbot image | |
on: | |
push: | |
tags: | |
- v** | |
workflow_dispatch: # Allows to trigger the workflow manually in GitHub UI | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3.0.0 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5.5.1 | |
with: | |
images: edwardlol/chatbot | |
# semver has default priority 900, sha has default priority 100 | |
# ref has default priority 600 | |
# see <https://github.com/docker/metadata-action#priority-attribute> | |
# also, sha has a default prefix of '-sha' | |
# see <https://github.com/docker/metadata-action#typesha> | |
tags: | | |
type=semver,pattern={{version}} | |
type=sha,priority=850,prefix= | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5.1.0 | |
with: | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |