Skip to content

Deployment With integration of workflows #5

Deployment With integration of workflows

Deployment With integration of workflows #5

Workflow file for this run

name: Build and Deploy to Dev
on:
pull_request:
branches: [main]
jobs:
build-and-push-server:
uses: ./.github/workflows/build-and-push-server.yml
secrets: inherit
build-and-push-clients:
uses: ./.github/workflows/build-and-push-clients.yml
secrets: inherit
deploy-dev-container:
needs: [build-and-push-clients, build-and-push-server]
uses: ./.github/workflows/deploy-docker.yml
secrets: inherit
with:
environment: dev
VM_HOST: ${{ vars.VM_HOST }}
VM_USERNAME: ${{ vars.VM_USERNAME }}