Skip to content

Commit

Permalink
Add helm chart CI
Browse files Browse the repository at this point in the history
  • Loading branch information
garryod committed Mar 25, 2024
1 parent 8c998f9 commit d4a5001
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/helm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Helm Charts

on:
push:
pull_request:

jobs:
lint:
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
with:
fetch-depth: 0

- name: Setup Helm
uses: azure/[email protected]

- name: Setup chart-testing
uses: helm/[email protected]

- name: Lint
run: >
ct
lint
--target-branch=${{ github.event.repository.default_branch }}
--validate-maintainers=false
build_publish:
needs:
- lint
# Deduplicate jobs from pull requests and branch pushes within the same repo.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout source
uses: actions/[email protected]

- name: Retrieve chart dependencies
run: helm dependency update

- name: Package chart
run: helm package charts/sessions

- 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/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Publish chart
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
run: helm push $(ls sessions-*.tgz) ${{ env.IMAGE_REPOSITORY }}

0 comments on commit d4a5001

Please sign in to comment.