Skip to content

Publish Chatbot image #113

Publish Chatbot image

Publish Chatbot image #113

Workflow file for this run

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.3.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@v6.9.0
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}