Skip to content

use h4 instead of unordered list #79

use h4 instead of unordered list

use h4 instead of unordered list #79

Workflow file for this run

name: Helm Chart Lint & Build
on:
push:
branches:
- 'dev'
pull_request:
branches:
- 'dev'
- 'main'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Set up Helm
uses: azure/[email protected]
with:
version: v3.13.0
# Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
# yamllint (https://github.com/adrienverge/yamllint) which require Python
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.x
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (lint)
run: ct lint --chart-dirs=servarr/ --charts=servarr/ --validate-maintainers=false
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Install Helm
uses: azure/[email protected]
- name: Helm Dependency update
run: helm dependency update servarr/ --debug
- name: Helm Template
run: helm template servarr servarr/ --debug -f .github/ci/ci-values.yaml
- name: Create Package
run: helm package servarr/