Skip to content

Deployment With integration of workflows #1

Deployment With integration of workflows

Deployment With integration of workflows #1

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

Check failure on line 16 in .github/workflows/dev.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dev.yml

Invalid workflow file

error parsing called workflow ".github/workflows/dev.yml" -> "./.github/workflows/deploy_docker.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
with:
environment: Dev
VM_HOST: ${{ vars.VM_HOST }}
VM_USERNAME: ${{ vars.VM_USERNAME }}