From 4ae1b02f629e7f037a63f2ece0e393d83ea60b28 Mon Sep 17 00:00:00 2001 From: James Gunn Date: Fri, 15 Sep 2023 12:07:06 +0100 Subject: [PATCH] Fix pre-production deployment (#823) --- .github/workflows/deploy-preprod.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/deploy-preprod.yml b/.github/workflows/deploy-preprod.yml index 3e06d4d1b..3975973d3 100644 --- a/.github/workflows/deploy-preprod.yml +++ b/.github/workflows/deploy-preprod.yml @@ -12,9 +12,6 @@ on: ui_docker_image: type: string required: true - outputs: - api_url: - value: ${{ jobs.deploy.outputs.api_url }} workflow_dispatch: concurrency: deploy_preprod @@ -25,30 +22,6 @@ jobs: uses: ./.github/workflows/package.yml secrets: inherit - deploy: - name: Deploy to PAAS - needs: package - if: always() && (needs.package.result == 'success' || needs.package.result == 'skipped') - runs-on: ubuntu-latest - - outputs: - api_url: ${{ steps.deploy.outputs.api_url }} - - environment: - name: pre-production - - steps: - - uses: actions/checkout@v4 - - - uses: ./.github/workflows/actions/deploy-paas-environment - id: deploy - with: - environment_name: pre-production - api_docker_image: ${{ inputs.api_docker_image || needs.package.outputs.api_docker_image }} - azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} - terraform_vars: pre-production.tfvars.json - terraform_backend_vars: pre-production.backend.tfvars - deploy_aks: name: Deploy to AKS needs: package