Updating to the latest of github.com/external-secrets/external-secrets. #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Helm | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
paths: | |
- 'deploy/charts/**' | |
- 'deploy/crds' | |
pull_request: | |
paths: | |
- 'deploy/charts/**' | |
- 'deploy/crds' | |
workflow_dispatch: {} | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate chart | |
run: | | |
make helm.generate | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.4.2 | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.7 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --config=.github/ci/ct.yaml) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Install chart unittest | |
run: | | |
helm env | |
helm plugin install https://github.com/helm-unittest/helm-unittest | |
- name: Run chart-testing (lint) | |
run: ct lint --config=.github/ci/ct.yaml | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.list-changed.outputs.changed == 'true' | |
- name: Run chart-testing (install) | |
run: ct install --config=.github/ci/ct.yaml --charts deploy/charts/external-secrets | |
if: steps.list-changed.outputs.changed == 'true' | |
- name: Run unitests | |
if: steps.list-changed.outputs.changed == 'true' | |
run: make helm.test | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.4.2 | |
- name: Generate chart | |
run: | | |
make helm.generate | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
if: | | |
github.ref == 'refs/heads/main' || | |
startsWith(github.ref, 'refs/heads/release-') | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}" | |
with: | |
charts_dir: deploy/charts | |
charts_repo_url: https://charts.external-secrets.io |