fixing makefile #2
Workflow file for this run
This file contains 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
name: Verify Chart Schema | |
on: | |
push: | |
jobs: | |
verify-schema: | |
name: "Verify Chart Schema" | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: "Checkout" | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: "Set Up Helm" | |
uses: azure/[email protected] | |
if: github.ref != 'refs/heads/main' | |
with: | |
version: v3.4.1 | |
- name: install helm-schema-gen | |
run: helm plugin install https://github.com/karuppiah7890/helm-schema-gen.git | |
- name: Set up dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y make | |
# Install chart-doc-gen or add additional commands as needed | |
- name: Generate Documentation | |
run: make gen-schema | |
- name: Verify Documentation | |
run: make verify |