This repository was archived by the owner on Aug 6, 2025. It is now read-only.
DOP-5854: only build one version for associated products at a time #195
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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - closed | |
| name: Cleanup Feature Branch Infrastructure | |
| jobs: | |
| destroy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.x' | |
| - name: Configure AWS credentials | |
| uses: aws-actions/configure-aws-credentials@v1 | |
| with: | |
| aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| aws-region: us-east-2 | |
| - name: Cleanup Feature Branch Infrastructure | |
| run: | | |
| npm ci | |
| cd cdk-infra/ | |
| npm ci | |
| npm run cdk destroy -- -c customFeatureName=enhancedApp-stg-${{github.head_ref}} --force \ | |
| auto-builder-stack-enhancedApp-stg-${{github.head_ref}}-worker \ | |
| auto-builder-stack-enhancedApp-stg-${{github.head_ref}}-queues \ | |
| auto-builder-stack-enhancedApp-stg-${{github.head_ref}}-webhooks | |
| - name: Delete cache | |
| run: gh cache delete ${{github.head_ref}} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |