Skip to content

chore: enable jellystat #55

chore: enable jellystat

chore: enable jellystat #55

Workflow file for this run

name: Upgrade ArgoCD
on:
workflow_dispatch:
push:
branches:
- main
paths:
- argo-cd/**
jobs:
upgrade:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Kubectl
uses: azure/[email protected]
with:
method: service-account
k8s-url: "${{ secrets.API_SERVER }}"
k8s-secret: "${{ secrets.SA_SECRET }}"
- name: Install Helm
uses: azure/[email protected]
- name: Download dependencies
run: |
helm dep update ./argo-cd
- name: Lint
run: |
helm lint ./argo-cd
- name: Upgrade release
run: |
helm upgrade --kube-insecure-skip-tls-verify argo-cd ./argo-cd --namespace argocd --install --values ./argo-cd/values.yaml