Skip to content

Commit

Permalink
Add helm chart linting & publishing to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
garryod committed Apr 16, 2024
1 parent a78bc4a commit b8df1e2
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/_helm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
on:
workflow_call:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.2
with:
fetch-depth: 0

- name: Setup Helm
uses: azure/setup-helm@v3.5

- name: Setup chart-testing
uses: helm/chart-testing-action@v2.6.1

- name: Lint
run: >
ct
lint
--target-branch=${{ github.event.repository.default_branch }}
--validate-maintainers=false
build_publish:
needs:
- lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout source
uses: actions/checkout@v4.1.2

- name: Retrieve chart dependencies
working-directory: charts/energy-scan
run: helm dependency update

- name: Package chart
working-directory: charts/energy-scan
run: helm package .

- name: Generate Image Name
run: echo IMAGE_REPOSITORY=oci://ghcr.io/$(echo "${{ github.repository }}-chart" | tr '[:upper:]' '[:lower:]' | tr '[_]' '[\-]') >> $GITHUB_ENV

- name: Log in to GitHub Docker Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Publish chart
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
working-directory: charts/energy-scan
run: helm push $(ls energy-scan-*.tgz) ${{ env.IMAGE_REPOSITORY }}
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ jobs:
contents: read
packages: write

helm:
needs: check
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_helm.yml
permissions:
contents: read
packages: write

dist:
needs: check
if: needs.check.outputs.branch-pr == ''
Expand Down

0 comments on commit b8df1e2

Please sign in to comment.