Skip to content

Deployment With integration of workflows #2

Deployment With integration of workflows

Deployment With integration of workflows #2

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

Check failure on line 9 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/build-and-push-server.yml" : workflow is not reusable as it is missing a `on.workflow_call` trigger
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 }}