mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
359a05eadf
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
139 lines
4.2 KiB
YAML
139 lines
4.2 KiB
YAML
name: "Charts: Release"
|
|
|
|
concurrency: helm-release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "charts/**"
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Generate Token
|
|
uses: tibdex/github-app-token@v1
|
|
id: generate-token
|
|
with:
|
|
app_id: ${{ secrets.K8S_AT_HOME_APP_ID }}
|
|
private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
fetch-depth: 0
|
|
|
|
- name: Install Kubernetes tools
|
|
uses: yokawasa/action-setup-kube-tools@v0.8.2
|
|
with:
|
|
setup-tools: |
|
|
helmv3
|
|
yq
|
|
helm: "3.8.0"
|
|
yq: "4.16.2"
|
|
|
|
- name: Install helm-docs
|
|
run: |
|
|
wget -O /tmp/helm-docs.deb https://github.com/k8s-at-home/helm-docs/releases/download/v0.1.1/helm-docs_0.1.1_Linux_x86_64.deb
|
|
sudo dpkg -i /tmp/helm-docs.deb
|
|
|
|
- name: Collect changes
|
|
id: collect-changes
|
|
uses: ./.github/actions/collect-changes
|
|
|
|
- name: Generate README for changed charts
|
|
if: |
|
|
steps.collect-changes.outputs.changesDetected == 'true'
|
|
run: |
|
|
CHARTS=(${{ steps.collect-changes.outputs.addedOrModifiedCharts }})
|
|
for i in "${CHARTS[@]}"
|
|
do
|
|
IFS='/' read -r -a chart_parts <<< "$i"
|
|
if [ -f "charts/${chart_parts[0]}"/"${chart_parts[1]}/Chart.yaml" ]; then
|
|
./.github/scripts/gen-helm-docs.sh "${chart_parts[0]}" "${chart_parts[1]}"
|
|
fi
|
|
done
|
|
|
|
- name: Create commit
|
|
id: create-commit
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
file_pattern: charts/**/
|
|
commit_message: "chore: Auto-update chart README [skip ci]"
|
|
commit_user_name: k8s-at-home[bot]
|
|
commit_user_email: k8s-at-home[bot]@users.noreply.github.com
|
|
commit_author: k8s-at-home[bot] <k8s-at-home[bot]@users.noreply.github.com>
|
|
|
|
- name: Save commit hash
|
|
id: save-commit-hash
|
|
run: |
|
|
if [ "${{ steps.create-commit.outputs.changes_detected || 'unknown' }}" == "true" ]; then
|
|
echo '::set-output name=commit_hash::${{ steps.create-commit.outputs.commit_hash }}'
|
|
else
|
|
echo "::set-output name=commit_hash::${GITHUB_SHA}"
|
|
fi
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
ref: ${{ steps.save-commit-hash.outputs.commit_hash }}
|
|
fetch-depth: 0
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "k8s-at-home[bot]"
|
|
git config user.email "k8s-at-home[bot]@users.noreply.github.com"
|
|
|
|
- name: Run chart-releaser
|
|
uses: helm/chart-releaser-action@v1.4.0
|
|
with:
|
|
charts_dir: charts/*
|
|
charts_repo_url: https://k8s-at-home.com/charts/
|
|
env:
|
|
CR_TOKEN: "${{ steps.generate-token.outputs.token }}"
|
|
CR_SKIP_EXISTING: "true"
|
|
|
|
generate-summary:
|
|
name: Auto-generate charts summary
|
|
runs-on: ubuntu-20.04
|
|
needs:
|
|
- release
|
|
steps:
|
|
- name: Generate Token
|
|
uses: tibdex/github-app-token@v1
|
|
id: generate-token
|
|
with:
|
|
app_id: ${{ secrets.K8S_AT_HOME_APP_ID }}
|
|
private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
ref: master
|
|
fetch-depth: 0
|
|
|
|
- name: Install yq
|
|
uses: chrisdickinson/setup-yq@latest
|
|
with:
|
|
yq-version: v4.9.3
|
|
|
|
- name: Run script
|
|
run: |
|
|
./hack/gen-chart-summary.sh
|
|
|
|
- name: Create Commit
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
push_options: --force
|
|
commit_message: Auto-generate chart summary [no ci]
|
|
commit_user_name: k8s-at-home[bot]
|
|
commit_user_email: k8s-at-home[bot]@users.noreply.github.com
|
|
commit_author: k8s-at-home[bot] <k8s-at-home[bot]@users.noreply.github.com>
|
|
file_pattern: charts/README.md
|