diff --git a/.github/workflows/deploy-services.yml b/.github/workflows/deploy-services.yml index 5844f4d..17cadf6 100644 --- a/.github/workflows/deploy-services.yml +++ b/.github/workflows/deploy-services.yml @@ -21,6 +21,7 @@ permissions: jobs: job-service: uses: ./.github/workflows/deploy-service.yml + if: ${{ vars.ENABLED_SERVICES == '' || contains(vars.ENABLED_SERVICES, 'job-service') }} with: env: ${{ inputs.env }} service: job-service @@ -28,6 +29,7 @@ jobs: user-service: uses: ./.github/workflows/deploy-service.yml + if: ${{ vars.ENABLED_SERVICES == '' || contains(vars.ENABLED_SERVICES, 'user-service') }} with: env: ${{ inputs.env }} service: user-service @@ -35,6 +37,7 @@ jobs: research-service: uses: ./.github/workflows/deploy-service.yml + if: ${{ vars.ENABLED_SERVICES == '' || contains(vars.ENABLED_SERVICES, 'research-service') }} with: env: ${{ inputs.env }} service: research-service