Skip to content

Deployment With integration of workflows #4

Deployment With integration of workflows

Deployment With integration of workflows #4

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

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

View workflow run for this annotation

GitHub Actions / Build and Deploy to Dev

Invalid workflow file

The workflow is not valid. .github/workflows/dev.yml (Line: 19, Col: 20): Invalid input, environment is not defined in the referenced workflow.
VM_HOST: ${{ vars.VM_HOST }}
VM_USERNAME: ${{ vars.VM_USERNAME }}