Skip to content

Commit

Permalink
Add CI for publishing Sidecar Chart in Registry (#4)
Browse files Browse the repository at this point in the history
* Publish Chart in Registry

* update name

* alias

* update names for better readability
  • Loading branch information
gabfelp authored Jul 8, 2024
1 parent 2fdf66a commit 33937b5
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Publish Helm Chart

on:
push:
tags:
- "**"

jobs:
publish-tag:
permissions:
id-token: write
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.ROLE_TO_ASSUME }}
aws-region: us-east-1

- name: Login to Amazon ECR Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v2
with:
registry-type: public

- name: Package and push helm chart to Amazon ECR Public
env:
REGISTRY: ${{ steps.login-ecr-public.outputs.registry }}
REGISTRY_ALIAS: cyral/helm
REPOSITORY: sidecar
run: |
VERSION="${GITHUB_REF_NAME}"
echo "setting version to $VERSION"
sed -i "s/version: .*/version: $VERSION/" Chart.yaml
helm package .
helm push $REPOSITORY-${VERSION}.tgz oci://$REGISTRY/$REGISTRY_ALIAS
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ keywords:
maintainers:
- name: Cyral, Inc.
url: https://github.com/cyralinc/helm-sidecar
name: cyral-sidecar
name: sidecar
sources:
- https://github.com/cyralinc/helm-sidecar
version: 4.13.9

0 comments on commit 33937b5

Please # to comment.