Skip to content

chore(main): [bot] release t8s-cluster:3.0.0 #351

chore(main): [bot] release t8s-cluster:3.0.0

chore(main): [bot] release t8s-cluster:3.0.0 #351

name: Update metadata files for release
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- release-please--branches--main--components-*
jobs:
getChangedChart:
uses: ./.github/workflows/get-changed-chart.yaml
update-metadata-files:
runs-on: ubuntu-22.04
needs: getChangedChart
name: update metadata file for release
env:
CT_TARGET_BRANCH: ${{ github.event.repository.default_branch }}
CHART: ${{ needs.getChangedChart.outputs.chart }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.ACTIONS_BOT_TOKEN }}
- run: pip install yq
- name: Install sponge
run: sudo apt-get -yq install moreutils
- run: ./.github/scripts/prepare-values.sh "charts/$CHART"
- name: extract images
run: ./.github/scripts/extract-artifacthub-images.sh "charts/$CHART"
- name: enforce trusted registries
run: ./.github/scripts/enforce-trusted-registries.sh "charts/$CHART"
- name: Commit artifacthub images
uses: EndBug/add-and-commit@v9
with:
message: "chore: [bot] Update images in 'Chart.yaml'"
default_author: github_actions
push: false
add: charts/${{ needs.getChangedChart.outputs.chart }}/Chart.yaml
- run: pip install json-schema-for-humans
- name: generate values.md
run: |
set -ex
generate-schema-doc --config-file .github/json-schema-to-md.yaml "charts/$CHART/values.schema.json" "charts/$CHART/values.md"
- name: generate Docs
uses: docker://jnorwood/helm-docs:latest
with:
args: -g charts/${{ needs.getChangedChart.outputs.chart }}
- name: Commit README
uses: EndBug/add-and-commit@v9
with:
message: "chore: [bot] Update 'README.md'"
default_author: github_actions
push: true
add: charts/${{ needs.getChangedChart.outputs.chart }}/README.md