DevOps-fix

This commit is contained in:
2026-04-21 16:36:30 +03:00
parent e6f21b4038
commit 7cd43b9062
-47
View File
@@ -1,47 +0,0 @@
name: 'Deploy All Backend'
on:
workflow_dispatch:
inputs:
namespace:
description: 'Name Space'
required: true
type: choice
options:
- devx
- dev
- test
- production
default: devx
jobs:
deploy-dev:
name: 'Deploy to dev'
runs-on: ubuntu-latest
steps:
- name: 'Deploy Core'
uses: ./.gitea/workflows/build-backend.yml
with:
repo_path: devspc/devspace-apiregistry-core-service
namespace: ${{ github.event.inputs.namespace }}
branch: 'master'
version: 'latest'
- name: 'Deploy Generator'
uses: ./.gitea/workflows/build-backend.yml
with:
repo_path: devspc/devspace-apiregistry-generator-service
namespace: ${{ github.event.inputs.namespace }}
branch: 'master'
version: 'latest'
- name: 'Deploy Gateway'
uses: ./.gitea/workflows/build-backend.yml
with:
repo_path: devspc/devspace-gateway
namespace: ${{ github.event.inputs.namespace }}
branch: 'master'
version: 'latest'
- name: 'Deploy Api'
uses: ./.gitea/workflows/build-backend.yml
with:
repo_path: devspc/devspace-api
namespace: ${{ github.event.inputs.namespace }}
branch: 'master'
version: 'latest'