Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "[helm-chart] Add helm-docs to the helm chart workflow" #881

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 5 additions & 40 deletions .github/workflows/helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ on:
branches:
- main
paths:
- 'charts/*/Chart.yaml'
- 'charts/**'

permissions:
contents: write
packages: write
pull-requests: write

jobs:
helm-chart:
Expand All @@ -24,68 +22,35 @@ jobs:

- name: Configure git
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"

- name: Install helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Install helm-docs
env:
HELM_DOCS_VERSION: "1.14.2"
run: |
cd /tmp
wget /~https://github.com/norwoodj/helm-docs/releases/download/v"${HELM_DOCS_VERSION}"/helm-docs_"${HELM_DOCS_VERSION}"_Linux_x86_64.tar.gz
tar -xvf helm-docs_"${HELM_DOCS_VERSION}"_Linux_x86_64.tar.gz
sudo mv helm-docs /usr/local/bin

- name: Set helm chart appVersion from Version.props
run: |
export VERSION_PROPS=$(awk -F'[<>]' '/VersionPrefix/{print $3}' Version.props)
sed -i -e 's#Version.props#"'${VERSION_PROPS}'"#g' charts/garnet/Chart.yaml

- name: Helm lint, helm-docs and helm package
- name: Helm lint and package
run: |
mkdir .cr-release-packages
for chart in $(find charts -mindepth 1 -maxdepth 1 -type d); do
if [ -z "${chart:-}" ]; then
break
fi
helm lint "${chart}"
helm-docs --document-dependency-values --chart-search-root "${chart}"
helm package "${chart}" --dependency-update --destination .cr-release-packages
done

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
add-paths: charts/garnet/README.md
token: ${{ secrets.GITHUB_TOKEN }}
committer: github-actions[bot] <${{ github.actor }}@users.noreply.github.com>
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>
signoff: false
branch: helm-docs-gen
delete-branch: true
title: '[helm-chart] Update charts/garnet/README.md by helm-docs'
body: |
- Update charts/garnet/README.md

Auto-generated by [create-pull-request][1]

[1]: /~https://github.com/peter-evans/create-pull-request
labels: |
helm-chart
automated pr
run: |
git checkout -- charts/garnet/Chart.yaml

- name: Login to GHCR
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
run: |
echo "${GITHUB_TOKEN}" | helm registry login ghcr.io --username "${GITHUB_ACTOR}" --password-stdin
echo "$GITHUB_TOKEN" | helm registry login ghcr.io --username "$GITHUB_ACTOR" --password-stdin

- name: Push charts to GHCR
run: |
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,3 @@ test/tmp/

# BenchmarkDotNet Results
BenchmarkDotNet.Artifacts/

# Helm chart artifacts
.cr-release-packages/
Loading