Files
qdrant-helm/.github/workflows/release-workflow.yaml
dependabot[bot] 29723b1cfe Bump actions/checkout from 5 to 6 (#409)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 19:06:14 +01:00

51 lines
1.1 KiB
YAML

name: Release
on:
push:
branches:
- main
paths:
- 'charts/*/Chart.yaml'
jobs:
Release:
name: Release Workflow
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "ghrunnerbot"
git config user.email "cloud-dev@qdrant.com"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.7.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
config: cr.yaml
- name: Checkout to gh-pages
uses: actions/checkout@v6
with:
ref: gh-pages
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: 1.24
- name: Generate index.html
run: |
go install github.com/halkeye/helm-repo-html@v0.2.1
/home/runner/go/bin/helm-repo-html
- uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "Update index.html"