build: bump react to v19.2.1 #188
Workflow file for this run
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
| # Workflow for removing preview deployments of the blog | |
| name: Undeploy blog preview | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref || github.run_id }} | |
| # Default to bash | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| jobs: | |
| # Undeploy job | |
| undeploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v4 | |
| - name: Azure login | |
| uses: azure/login@v2 | |
| with: | |
| client-id: ${{ secrets.CI_RENKU_AZURE_CLIENT_ID }} | |
| tenant-id: ${{ secrets.CI_RENKU_AZURE_TENANT_ID }} | |
| subscription-id: ${{ secrets.CI_RENKU_AZURE_SUBSCRIPTION_ID }} | |
| - name: Set AKS context | |
| uses: azure/aks-set-context@v4 | |
| with: | |
| resource-group: "renku-dev" | |
| cluster-name: "aks-switzerlandnorth-renku-dev" | |
| - name: Uninstall helm chart | |
| env: | |
| RENKU_RELEASE: renku-blog-ci-${{ github.event.number }} | |
| run: | | |
| RENKU_NAMESPACE=${RENKU_RELEASE} | |
| helm uninstall ${RENKU_RELEASE} --namespace=${RENKU_NAMESPACE} \ | |
| --timeout 5m --wait | |
| kubectl delete namespace ${RENKU_NAMESPACE} || true |