fix(terraform): updated products resource group data ref #73
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Products service | |
| concurrency: products | |
| permissions: | |
| id-token: write | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/**" | |
| - "infrastructure/terraform/internal/products/**" | |
| - "infrastructure/terraform/modules/**" | |
| - "apps/products/**" | |
| jobs: | |
| build-publish-products: | |
| name: Build and publish the Products service | |
| uses: ./.github/workflows/reusable-dotnet-service.yaml | |
| with: | |
| service-name: products | |
| service-path: apps/products | |
| secrets: inherit | |
| provision-products: | |
| name: Deploy the Products service | |
| needs: build-publish-products | |
| uses: ./.github/workflows/reusable-provision.yaml | |
| with: | |
| environment: ${{ vars.ENVIRONMENT }} | |
| infrastructure-path: internal/products | |
| service-name: products | |
| secrets: inherit |