Skip to content

fix(actions): publish chart independently #30

fix(actions): publish chart independently

fix(actions): publish chart independently #30

Workflow file for this run

name: Test Charts
on:
- pull_request
- push
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
chart-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: azure/setup-helm@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
check-latest: true
- uses: helm/chart-testing-action@v2
- name: chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }} --chart-dirs deploy/charts)
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --chart-dirs deploy/charts --github-groups
- uses: helm/kind-action@v1
if: steps.list-changed.outputs.changed == 'true'
- name: chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: |
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.3/cert-manager.crds.yaml
kubectl apply -f ./deploy/crds
ct install --target-branch ${{ github.event.repository.default_branch }} --chart-dirs deploy/charts --github-groups
- name: helm package
if: steps.list-changed.outputs.changed == 'true'
run: helm package deploy/charts/origin-ca-issuer
- name: helm publish
if: steps.list-changed.outputs.changed == 'true' && (github.event_name == "push" && github.ref_name == github.event.repository.default_branch)

Check failure on line 43 in .github/workflows/charts.yaml

View workflow run for this annotation

GitHub Actions / Test Charts

Invalid workflow file

The workflow is not valid. .github/workflows/charts.yaml (Line: 43, Col: 13): Unexpected symbol: '"push"'. Located at position 71 within expression: steps.list-changed.outputs.changed == 'true' && (github.event_name == "push" && github.ref_name == github.event.repository.default_branch)
run: |
echo ${{ secrets.GITHUB_TOKEN }} | helm registry login -u ${{ github.actor }} --password-stdin ghcr.io
helm push origin-ca-issuer-*.tgz oci://ghcr.io/cloudflare/origin-ca-issuer-charts