fix(azure): add application insights and create container app env #63
Workflow file for this run
This file contains 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: CI/CD Pull Request | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize, reopened] | |
jobs: | |
generate-git-short-sha: | |
name: Generate git short sha | |
uses: ./.github/workflows/workflow-generate-git-short-sha.yml | |
check-for-changes: | |
name: Check for changes | |
uses: ./.github/workflows/workflow-check-for-changes.yml | |
build-and-test: | |
uses: ./.github/workflows/workflow-build-and-test.yml | |
with: | |
environment: test | |
playwright-test: | |
uses: ./.github/workflows/workflow-playwright-test.yml | |
dry-run-deploy-infra: | |
uses: ./.github/workflows/workflow-deploy-infrastructure.yml | |
needs: [generate-git-short-sha, check-for-changes] | |
if: ${{ needs.check-for-changes.outputs.hasInfrastructureChanges == 'true' }} | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
AZURE_SOURCE_KEY_VAULT_NAME: ${{ secrets.AZURE_SOURCE_KEY_VAULT_NAME }} | |
AZURE_SOURCE_KEY_VAULT_SUBSCRIPTION_ID: ${{ secrets.AZURE_SOURCE_KEY_VAULT_SUBSCRIPTION_ID }} | |
AZURE_SOURCE_KEY_VAULT_RESOURCE_GROUP: ${{ secrets.AZURE_SOURCE_KEY_VAULT_RESOURCE_GROUP }} | |
with: | |
environment: test | |
region: norwayeast | |
dryRun: true | |
version: ${{ github.sha }} | |
deploy-apps-test: | |
name: Deploy apps to test | |
needs: [ | |
# todo: uncomment when release-please in enabled | |
# get-current-version, | |
check-for-changes, | |
generate-git-short-sha, | |
] | |
if: ${{ needs.check-for-changes.outputs.hasApplicationChanges == 'true' }} | |
uses: ./.github/workflows/workflow-deploy-apps.yml | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
# todo: consider resolving these in another way since they are created in the infra-step | |
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | |
AZURE_ENVIRONMENT_KEY_VAULT_NAME: ${{ secrets.AZURE_ENVIRONMENT_KEY_VAULT_NAME }} | |
AZURE_CONTAINER_APP_ENVIRONMENT_NAME: ${{ secrets.AZURE_CONTAINER_APP_ENVIRONMENT_NAME }} | |
AZURE_APP_INSIGHTS_CONNECTION_STRING: ${{ secrets.AZURE_APP_INSIGHTS_CONNECTION_STRING }} | |
AZURE_APP_CONFIGURATION_NAME: ${{ secrets.AZURE_APP_CONFIGURATION_NAME }} | |
with: | |
environment: test | |
region: norwayeast | |
dryRun: true | |
# todo: uncomment when release-please in enabled | |
# version: ${{ needs.get-current-version.outputs.version }}-${{ needs.generate-git-short-sha.outputs.gitShortSha }} | |
version: ${{ needs.generate-git-short-sha.outputs.gitShortSha }} |