Skip to content

build: bump react to v19.2.1 #188

build: bump react to v19.2.1

build: bump react to v19.2.1 #188

# 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