Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 3.5.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e5e7e5ab8...c85c95e3d7)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
62 lines
2.1 KiB
YAML
62 lines
2.1 KiB
YAML
## Reference: https://github.com/helm/chart-releaser-action
|
|
name: Chart Publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
publish:
|
|
permissions:
|
|
contents: write # for helm/chart-releaser-action to push chart release and create a release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Helm
|
|
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
|
|
with:
|
|
version: v3.10.1 # Also update in lint-and-test.yaml
|
|
|
|
- name: Add dependency chart repos
|
|
run: |
|
|
helm repo add dandydeveloper https://dandydeveloper.github.io/charts/
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "$GITHUB_ACTOR"
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
## This is required to consider the old Circle-CI Index and to stay compatible with all the old releases.
|
|
- name: Fetch current Chart Index
|
|
run: |
|
|
git checkout origin/gh-pages index.yaml
|
|
|
|
# The GitHub repository secret `PGP_PRIVATE_KEY` contains the private key
|
|
# in ASCII-armored format. To export a (new) key, run this command:
|
|
# `gpg --armor --export-secret-key <my key>`
|
|
- name: Prepare PGP key
|
|
run: |
|
|
IFS=""
|
|
echo "$PGP_PRIVATE_KEY" | gpg --dearmor > $HOME/secring.gpg
|
|
echo "$PGP_PASSPHRASE" > $HOME/passphrase.txt
|
|
|
|
# Tell chart-releaser-action where to find the key and its passphrase
|
|
echo "CR_KEYRING=$HOME/secring.gpg" >> "$GITHUB_ENV"
|
|
echo "CR_PASSPHRASE_FILE=$HOME/passphrase.txt" >> "$GITHUB_ENV"
|
|
env:
|
|
PGP_PRIVATE_KEY: "${{ secrets.PGP_PRIVATE_KEY }}"
|
|
PGP_PASSPHRASE: "${{ secrets.PGP_PASSPHRASE }}"
|
|
|
|
- name: Run chart-releaser
|
|
uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0
|
|
with:
|
|
config: "./.github/configs/cr.yaml"
|
|
env:
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|