mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
673a4465cc
Bumps [stefanprodan/helm-gh-pages](https://github.com/stefanprodan/helm-gh-pages) from 1.5.0 to 1.7.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/stefanprodan/helm-gh-pages/releases">stefanprodan/helm-gh-pages's releases</a>.</em></p> <blockquote> <h2>v1.7.0</h2> <h2>What's Changed</h2> <ul> <li>Allow private helm repo auth in dependencies by <a href="https://github.com/zzorica"><code>@zzorica</code></a> in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/35">stefanprodan/helm-gh-pages#35</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/zzorica"><code>@zzorica</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/35">stefanprodan/helm-gh-pages#35</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/stefanprodan/helm-gh-pages/compare/v1.6.0...v1.7.0">https://github.com/stefanprodan/helm-gh-pages/compare/v1.6.0...v1.7.0</a></p> <h2>v1.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add support for alias:<!-- raw HTML omitted --> in dependencies check by <a href="https://github.com/paulcarlton-ww"><code>@paulcarlton-ww</code></a> in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/32">stefanprodan/helm-gh-pages#32</a></li> <li>Update Helm to v3.10.0 by <a href="https://github.com/stefanprodan"><code>@stefanprodan</code></a> in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/33">stefanprodan/helm-gh-pages#33</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/stefanprodan/helm-gh-pages/compare/v1.5.0...v1.6.0">https://github.com/stefanprodan/helm-gh-pages/compare/v1.5.0...v1.6.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="0ad2bb3773
"><code>0ad2bb3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/issues/35">#35</a> from zzorica/allow-private-helm-repo-auth-in-dependencies</li> <li><a href="86e9903900
"><code>86e9903</code></a> allow private helm repo auth in dependencies</li> <li><a href="a5c9252781
"><code>a5c9252</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/issues/33">#33</a> from stefanprodan/helm-3.10.0</li> <li><a href="844812954c
"><code>8448129</code></a> Update Helm to v3.10.0</li> <li><a href="b97c7e37c5
"><code>b97c7e3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/issues/32">#32</a> from paulcarlton-ww/debug</li> <li><a href="84568715a3
"><code>8456871</code></a> add dependencies</li> <li><a href="aa53926042
"><code>aa53926</code></a> add dependencies</li> <li><a href="a77eeb9630
"><code>a77eeb9</code></a> add dependencies</li> <li><a href="ce5cd1646e
"><code>ce5cd16</code></a> add dependencies</li> <li><a href="13eb32b03b
"><code>13eb32b</code></a> add dependencies</li> <li>Additional commits viewable in <a href="b43a8719cc...0ad2bb3773
">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=stefanprodan/helm-gh-pages&package-manager=github_actions&previous-version=1.5.0&new-version=1.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
964 B
YAML
34 lines
964 B
YAML
name: release-helm
|
|
|
|
on:
|
|
release:
|
|
types: [released] # don't trigger on pre-releases
|
|
workflow_dispatch: # allow manual trigger
|
|
|
|
# This allows a subsequently queued workflow run to interrupt previous runs
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id}}
|
|
cancel-in-progress: true
|
|
|
|
defaults:
|
|
run:
|
|
# fail-fast using bash -eo pipefail. See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
|
|
shell: bash
|
|
|
|
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@0ad2bb377311d61ac04ad9eb6f252fb68e207260
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
charts_dir: charts
|
|
target_dir: charts
|
|
linting: off
|