Skip to content

Commit

Permalink
added ci helm check
Browse files Browse the repository at this point in the history
  • Loading branch information
ggari-robotnik committed Jul 26, 2024
1 parent 3cc46be commit dd04a8c
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/helm-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: helm validation

on:
push:
branches:
- devel
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validate helm-chart
id: helm-chart-validation
uses: kubevious/cli@v1.0.62
with:
helm_chart: charts/rb-theron-sim

---
name: helm validation override

on:
push:
branches:
- devel
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Validate helm-chart with override
id: helm-chart-validation
uses: kubevious/cli@v1.0.62
with:
helm_chart: charts/rb-theron-sim
helm_override: charts/rb-theron-sim/values-iron-zenoh.yaml

0 comments on commit dd04a8c

Please sign in to comment.