Skip to content

Very rough draft for supporting both keycloak and cas #783

Very rough draft for supporting both keycloak and cas

Very rough draft for supporting both keycloak and cas #783

Workflow file for this run

name: Helm Charts
on:
push:
pull_request:
jobs:
test:
# 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/setup-helm@v4
- 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:
# 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
strategy:
matrix:
chart:
- opa
- bundler
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Install chart dependencies
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm dependency update charts/${{ matrix.chart }}
- name: Package Chart
run: helm package charts/${{ matrix.chart }}
- name: Generate Image Name
run: echo IMAGE_REPOSITORY=oci://ghcr.io/$(echo "${{ github.repository }}-${{ matrix.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 ${{ matrix.chart }}-*.tgz) ${{ env.IMAGE_REPOSITORY }}