Skip to content

Workflow file for this run

name: Build and Deploy to Prod
on:
push:
branches:
- main
# TODO: remove below
- 66-setup-helios-deployment
jobs:
build-prod-container:
uses: ./.github/workflows/build_docker.yml
secrets: inherit
# deploy-prod-container:
# needs:
# - run-tests
# - build-prod-container
# uses: ./.github/workflows/deploy_docker.yml
# secrets: inherit
with:
environment: production
client_image_tag: "${{ needs.build-prod-container.outputs.client_image_tag }}"

Check failure on line 22 in .github/workflows/prod.yml

View workflow run for this annotation

GitHub Actions / Build and Deploy to Prod

Invalid workflow file

The workflow is not valid. .github/workflows/prod.yml (Line: 22, Col: 25): Invalid input, client_image_tag is not defined in the referenced workflow. .github/workflows/prod.yml (Line: 23, Col: 37): Invalid input, application_server_image_tag is not defined in the referenced workflow.
application_server_image_tag: "${{ needs.build-prod-container.outputs.application_server_image_tag }}"
webhook_listener_image_tag: "${{ needs.build-prod-container.outputs.webhook_listener_image_tag }}"