Files
Open-Assistant/.github/workflows/release.yaml
T

29 lines
622 B
YAML

name: Release
on:
release:
types: [released]
jobs:
build-backend:
uses: ./.github/workflows/docker-build.yaml
with:
image-name: oasst-backend
context: .
dockerfile: docker/Dockerfile.backend
build-args: ""
build-web:
uses: ./.github/workflows/docker-build.yaml
with:
image-name: oasst-web
context: .
dockerfile: docker/Dockerfile.website
build-args: ""
build-bot:
uses: ./.github/workflows/docker-build.yaml
with:
image-name: oasst-discord-bot
context: .
dockerfile: docker/Dockerfile.discord-bot
build-args: ""