-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (35 loc) · 1.21 KB
/
_helm_chart_publish.yaml
File metadata and controls
42 lines (35 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Helm Charts Publish
on:
workflow_call:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
chart:
- opa
- bundler
steps:
- name: Checkout source
uses: actions/checkout@v4.2.2
- 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/login-action@v3.4.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')
run: helm push $(ls ${{ matrix.chart }}-*.tgz) ${{ env.IMAGE_REPOSITORY }}