This repository was archived by the owner on Nov 18, 2025. It is now read-only.
we can nukeeee #1
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: Core Azure Infrastructure Backend CD | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: | ||
| - main | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| jobs: | ||
| deploy-core-infrastructure: | ||
| strategy: | ||
| matrix: | ||
| include: | ||
| - environment: "Development" | ||
| stack: "dev" | ||
| storageAccountName: AZURE_PULUMI_STORAGE_ACCOUNT | ||
| storageKeyName: AZURE_PULUMI_STORAGE_KEY | ||
| fail-fast: true | ||
| max-parallel: 1 | ||
| uses: ./.github/workflows/shared-pulumi-provision-infrastructure.yml | ||
|
Check failure on line 24 in .github/workflows/core-infrastructure-backend-CD.yml
|
||
| with: | ||
| environment: ${{ matrix.environment }} | ||
| jobName: "Update Kacky Core Infrastructure" | ||
| stack: ${{ matrix.stack }} | ||
| action: "up" | ||
| secrets: | ||
| passphrase: ${{ secrets.PULUMI_CONFIG_PASSPHRASE }} | ||
| storageAccount: ${{ secrets[matrix.storageAccountName] }} | ||
| storageKey: ${{ secrets[matrix.storageKeyName] }} | ||