Skip to content

chore(deps): update helm release grafana to v8.14.1 (#409) #368

chore(deps): update helm release grafana to v8.14.1 (#409)

chore(deps): update helm release grafana to v8.14.1 (#409) #368

Workflow file for this run

name: cd
on:
push:
branches:
- main
jobs:
publish_helm_chart:
permissions:
contents: write
packages: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
#
# Generated files
#
- uses: actions/setup-go@v5
with:
go-version: "1.23.0"
- name: Install extra tooling
run: |
go install github.com/google/go-jsonnet/cmd/jsonnet@latest
go install github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb@latest
go install github.com/norwoodj/helm-docs/cmd/[email protected]
- name: Render jsonnet rules for Netic OaaS chart
run: |
export PATH=$PATH:$(go env GOPATH)/bin
$GITHUB_WORKSPACE/charts/oaas-observability/scripts/update-rules.sh
- name: Render documentation
run: |
export PATH=$PATH:$(go env GOPATH)/bin
helm-docs
git update-index -q --ignore-submodules --refresh
if ! git diff-files --quiet --ignore-submodules -- ; then
echo Generating documentation caused a change - did you forget to run 'helm-docs' before commit?
exit 1
fi
#
# Deploy
#
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v4
with:
version: v3.15.3
- name: Add dependency chart repos
run: ./.github/scripts/helm-repos.sh
shell: bash
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"