Skip to content

v0.2.5

v0.2.5 #9

Workflow file for this run

name: Docker publish
on:
release:
types: [published]
jobs:
build_docker_image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get Version Tag
id: version
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> "$GITHUB_OUTPUT"
- name: Update API Version
run: |
sed -i "s/version=\"[^\"]*\"/version=\"${{ steps.version.outputs.VERSION }}\"/" api/routes.py
- name: Update Angular App Version
run: |
cd client
npm --no-git-tag-version version from-git
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build & push api
uses: docker/build-push-action@v6
with:
context: ./api
file: ./api/Dockerfile.prod
push: true
tags: |
ghcr.io/scai-bio/index/api:latest
ghcr.io/scai-bio/index/api:${{ steps.version.outputs.VERSION }}
- name: Build & push client
uses: docker/build-push-action@v6
with:
context: ./client
file: ./client/Dockerfile.prod
push: true
tags: |
ghcr.io/scai-bio/index/client:latest
ghcr.io/scai-bio/index/client:${{ steps.version.outputs.VERSION }}
- name: Build & push ollama
uses: docker/build-push-action@v6
with:
context: ./ollama
file: ./ollama/Dockerfile
push: true
tags: |
ghcr.io/scai-bio/kitsune/ollama:latest
ghcr.io/scai-bio/kitsune/ollama:${{ steps.version.outputs.VERSION }}