Skip to content

Fix docker compose of basic installation #18

Fix docker compose of basic installation

Fix docker compose of basic installation #18

name: release
on:
workflow_dispatch:
push:
branches:
- master
- develop
- release/*
jobs:
set-version:
uses: ./.github/workflows/set_version.yml
secrets: inherit
build:
needs: set-version
uses: ./.github/workflows/build.yml
secrets: inherit
with:
image_version: ${{ needs.set-version.outputs.image_version }}
test:
needs: build
uses: ./.github/workflows/test.yml
secrets: inherit
with:
image_version: ${{ needs.build.outputs.image_version }}
release:
needs: test
uses: ./.github/workflows/release.yml
secrets: inherit
with:
image_version: ${{ needs.test.outputs.image_version }}