Merge branch 'master' into admin_hiero_topic

This commit is contained in:
einhornimmond 2025-08-14 18:09:34 +02:00 committed by GitHub
commit feffdbdcc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,7 @@ jobs:
# JOB: DOCKER BUILD PRODUCTION FRONTEND ###################################### # JOB: DOCKER BUILD PRODUCTION FRONTEND ######################################
############################################################################## ##############################################################################
build_production_frontend: build_production_frontend:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Docker Build Production - Frontend name: Docker Build Production - Frontend
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [nothing] #needs: [nothing]
@ -47,6 +48,7 @@ jobs:
# JOB: DOCKER BUILD PRODUCTION ADMIN ######################################### # JOB: DOCKER BUILD PRODUCTION ADMIN #########################################
############################################################################## ##############################################################################
build_production_admin: build_production_admin:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Docker Build Production - Admin name: Docker Build Production - Admin
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [nothing] #needs: [nothing]
@ -84,6 +86,7 @@ jobs:
# JOB: DOCKER BUILD PRODUCTION BACKEND ####################################### # JOB: DOCKER BUILD PRODUCTION BACKEND #######################################
############################################################################## ##############################################################################
build_production_backend: build_production_backend:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Docker Build Production - Backend name: Docker Build Production - Backend
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [nothing] #needs: [nothing]
@ -121,6 +124,7 @@ jobs:
# JOB: DOCKER BUILD PRODUCTION DHT-NODE ###################################### # JOB: DOCKER BUILD PRODUCTION DHT-NODE ######################################
############################################################################## ##############################################################################
build_production_dht-node: build_production_dht-node:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Docker Build Production - DHT-Node name: Docker Build Production - DHT-Node
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [nothing] #needs: [nothing]
@ -158,6 +162,7 @@ jobs:
# JOB: DOCKER BUILD PRODUCTION FEDERATION ###################################### # JOB: DOCKER BUILD PRODUCTION FEDERATION ######################################
############################################################################## ##############################################################################
build_production_federation: build_production_federation:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Docker Build Production - Federation name: Docker Build Production - Federation
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [nothing] #needs: [nothing]
@ -195,6 +200,7 @@ jobs:
# JOB: DOCKER BUILD PRODUCTION DATABASE UP ################################### # JOB: DOCKER BUILD PRODUCTION DATABASE UP ###################################
############################################################################## ##############################################################################
build_production_database_up: build_production_database_up:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Docker Build Production - Database up name: Docker Build Production - Database up
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [nothing] #needs: [nothing]
@ -221,6 +227,7 @@ jobs:
# JOB: DOCKER BUILD PRODUCTION NGINX ######################################### # JOB: DOCKER BUILD PRODUCTION NGINX #########################################
############################################################################## ##############################################################################
build_production_nginx: build_production_nginx:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Docker Build Production - Nginx name: Docker Build Production - Nginx
runs-on: ubuntu-latest runs-on: ubuntu-latest
#needs: [nothing] #needs: [nothing]
@ -258,6 +265,7 @@ jobs:
# JOB: UPLOAD TO DOCKERHUB ################################################### # JOB: UPLOAD TO DOCKERHUB ###################################################
############################################################################## ##############################################################################
upload_to_dockerhub: upload_to_dockerhub:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Upload to Dockerhub name: Upload to Dockerhub
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build_production_frontend, build_production_backend, build_production_database_up, build_production_nginx] needs: [build_production_frontend, build_production_backend, build_production_database_up, build_production_nginx]
@ -346,6 +354,7 @@ jobs:
############################################################################## ##############################################################################
############################################################################## ##############################################################################
github_tag: github_tag:
if: startsWith(github.event.head_commit.message, 'chore(release):')
name: Tag latest version on Github name: Tag latest version on Github
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [upload_to_dockerhub] needs: [upload_to_dockerhub]