feat: add public Helm repository via GitHub Pages#3
Open
ammarun11 wants to merge 4 commits intosequinstream:mainfrom
Open
feat: add public Helm repository via GitHub Pages#3ammarun11 wants to merge 4 commits intosequinstream:mainfrom
ammarun11 wants to merge 4 commits intosequinstream:mainfrom
Conversation
|
@ammarun11 could you also add publish Helm chart as an OCI package please. Maybe with something like that: - name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
with:
charts_dir: charts
config: cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: "true"
- name: Login to GHCR
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push charts to GHCR
run: |
shopt -s nullglob
for pkg in .cr-release-packages/*.tgz; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" "oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/helm-charts"
donecr.yaml file: sign: false
# Enable automatic generation of release notes using GitHubs release notes generator.
# see: https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
generate-release-notes: truect.yaml file: # See https://github.com/helm/chart-testing#configuration
remote: origin
target-branch: main
chart-dirs:
- .
chart-repos:
- bitnami=https://charts.bitnami.com/bitnami
helm-extra-args: --timeout 600s
validate-maintainers: false |
Contributor
|
Thanks guys! We'll review this soon |
fazzone
reviewed
May 27, 2025
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write |
Author
There was a problem hiding this comment.
the pages: write and id-token: write permissions are necessary for GitHub Pages deployment
feat: add oci package release
Author
tested c301cbf |
|
Curious on an update here -- we've got a workaround to manage these resources via |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Public Helm Repository
What this does
Makes the Sequin Helm chart easy to install for everyone.
Before this PR
After this PR
Users can install Sequin with 2 simple commands:
Files changed
.github/workflows/release.yml- Auto-publishes the chartHow it works
What maintainers need to do
Benefits
Test it works
After merge, users can run:
helm repo add sequin https://sequinstream.github.io/helm-chart-sequin helm search repo sequin helm install test sequin/sequinThis only adds publishing - the chart itself doesn't change.