mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-08-04 12:33:56 +08:00
29 lines
622 B
YAML
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: ""
|