mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-07-25 17:42:54 +00:00
d246a1a817
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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>
42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
name: "helm: release"
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pages: write
|
|
packages: write
|
|
|
|
jobs:
|
|
helm-release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Publish Helm charts to github pages
|
|
uses: stefanprodan/helm-gh-pages@v1.7.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
charts_dir: k8s/charts
|
|
target_dir: helm
|
|
branch: gh-pages
|
|
helm_version: "3.18.4"
|
|
|
|
- name: Publish Helm charts to github container registry (ghcr.io)
|
|
uses: bitdeps/helm-oci-charts-releaser@v0.1.5
|
|
with:
|
|
charts_dir: k8s/charts
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
oci_registry: ghcr.io/${{ github.repository_owner }}
|
|
oci_username: github-actions
|
|
oci_password: ${{ secrets.GITHUB_TOKEN }}
|
|
skip_dependencies: true
|
|
skip_helm_install: true
|
|
skip_gh_release: true
|