diff --git a/.github/workflows/automated-deploy-services-dev.yml b/.github/workflows/automated-deploy-services-dev.yml index aef9902..e8e7fe5 100644 --- a/.github/workflows/automated-deploy-services-dev.yml +++ b/.github/workflows/automated-deploy-services-dev.yml @@ -92,13 +92,14 @@ jobs: redeploy_step_functions_on_infra: name: Redeploy step functions on infrastructure - needs: [metrics-calculator, ods-downloader, reports-generator, transfer-classifier] + needs: [metrics-calculator, ods-downloader, reports-generator, spine-exporter, transfer-classifier] if: | always() && - (needs.metrics-calculator.result == 'success' || needs.ods-downloader.result == 'success' || needs.reports-generator.result == 'success' || needs.transfer-classifier.result == 'success') && + (needs.metrics-calculator.result == 'success' || needs.ods-downloader.result == 'success' || needs.reports-generator.result == 'success' || needs.spine-exporter.result == 'success' || needs.transfer-classifier.result == 'success') && (needs.metrics-calculator.result == 'success' || needs.metrics-calculator.result == 'skipped') && (needs.ods-downloader.result == 'success' || needs.ods-downloader.result == 'skipped') && (needs.reports-generator.result == 'success' || needs.reports-generator.result == 'skipped') && + (needs.spine-exporter.result == 'success' || needs.spine-exporter.result == 'skipped') && (needs.transfer-classifier.result == 'success' || needs.transfer-classifier.result == 'skipped') uses: NHSDigital/gp2gp-reporting-infrastructure/.github/workflows/deploy-stack.yml@v4 with: diff --git a/.github/workflows/deploy-service-dev.yml b/.github/workflows/deploy-service-dev.yml index 22f7bef..a813439 100644 --- a/.github/workflows/deploy-service-dev.yml +++ b/.github/workflows/deploy-service-dev.yml @@ -1,6 +1,6 @@ name: Deploy Service - Dev -run-name: "${{ github.event.inputs.service_name }} | Is deployment? = ${{ github.event.inputs.is_deployment }}" +run-name: "${{ inputs.service_name }} | Is deployment? = ${{ inputs.is_deployment }}" on: workflow_dispatch: