-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add support for pushing charts to oci (ghcr) #107
Comments
6 tasks
3 tasks
10 tasks
This PR (#143) should solve this issue. Just need to add There is a snippet from my CI workflow: - name: Run chart-releaser
uses: acuD1/chart-releaser-action@main
with:
skip_upload: true
env:
CR_TOKEN: "${{ secrets.CI_TOKEN }}"
- name: Login to GHCR
uses: acuD1/login-action@master
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.CI_TOKEN }}
- name: Push Charts to GHCR
run: |
for pkg in .cr-release-packages/*; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" oci://ghcr.io/${{ env.REPOSITORY_OWNER }}/${{ env.REPOSITORY }}
done Until it's fully released (#186) you can use my branch. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add support for pushing charts to GHCR in addition to releases.
As of helm v3.8.0, oci support is now generally available.
Dependency: helm/chart-releaser#183
The text was updated successfully, but these errors were encountered: