diff --git a/.github/workflows/services-cd.yml b/.github/workflows/services-cd.yml index d4b7e13e7a..f30b5f5254 100644 --- a/.github/workflows/services-cd.yml +++ b/.github/workflows/services-cd.yml @@ -83,26 +83,18 @@ make istio.deploy - name: 'Deploy Frontend' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make frontend.deploy_pipeline - name: 'Deploy Backend' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make backend.deploy_pipeline - name: 'Deploy Cluster Service' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make cluster-service.deploy_pipeline - name: 'Deploy Maestro' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make maestro.server.deploy_pipeline maestro.registration.deploy diff --git a/.github/workflows/services-pr-check.yml b/.github/workflows/services-pr-check.yml index d54df326bf..3cfb026746 100644 --- a/.github/workflows/services-pr-check.yml +++ b/.github/workflows/services-pr-check.yml @@ -33,6 +33,8 @@ jobs: service_cluster_pr_check: + env: + PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} permissions: id-token: 'write' contents: 'read' @@ -75,25 +77,17 @@ helm plugin install https://github.com/databus23/helm-diff - name: 'Dry Run Cluster Service' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make cluster-service.dry_run - name: 'Dry Run Backend' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make backend.dry_run - name: 'Dry Run Frontend' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make frontend.dry_run - name: 'Dry Maestro Server' - env: - PRINCIPAL_ID: ${{ secrets.GHA_PRINCIPAL_ID }} run: | make maestro.server.dry_run