mirror of
https://github.com/fleetdm/fleet
synced 2026-05-16 13:38:43 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.0.2. - [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/v2...2541b1294d2704b0964813337f33b291d3f8596b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
No EOL
571 B
YAML
23 lines
No EOL
571 B
YAML
name: release-helm
|
|
on:
|
|
release:
|
|
types: [released] # don't trigger on pre-releases
|
|
workflow_dispatch: # allow manual trigger
|
|
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
publish-chart:
|
|
permissions:
|
|
contents: write # to push helm charts
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2
|
|
- uses: stefanprodan/helm-gh-pages@b43a8719cc63fdb3aa943cc57359ab19118eab3f
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
charts_dir: charts
|
|
target_dir: charts
|
|
linting: off |