Skip to content

chore: update UI to 0.0.40 #59

chore: update UI to 0.0.40

chore: update UI to 0.0.40 #59

Workflow file for this run

name: Test
on:
push:
branches-ignore:
- main
jobs:
validate:
runs-on: ubuntu-latest
environment: Dev
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- id: kubeconfig
name: Kubectl Config
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }}
run: |
if ! [ -d ~/.kube ]; then mkdir ~/.kube; fi
echo $KUBE_CONFIG | base64 -d > ~/.kube/config
chmod go-rwx ~/.kube/config
sha512sum ~/.kube/config
wc -l ~/.kube/config
- id: clusterinfo
name: Cluster Info
run: |
kubectl cluster-info
- name: Helm Debug Dry Run
id: checkyq
run: |
source .github/sharedenv.sh
echo "$HELM_ARGS"
echo helm upgrade --dry-run --debug $HELM_ARGS
helm upgrade --dry-run --debug $HELM_ARGS