-
Notifications
You must be signed in to change notification settings - Fork 403
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
ci: migrate release from docker hub into github container registry #395
Conversation
Signed-off-by: scnace <[email protected]>
cbc85d1
to
30001aa
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure we need personal access token.. but we can remove later
.github/workflows/mig.yml
Outdated
on: | ||
pull_request: | ||
branches: | ||
- main |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Switch to build on push to main:
on:
push:
branches: main
tags:
- v*
GitHub actions will not use your the repo secrets on pull request, so we will just need to merge it to test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sadly :(
.github/workflows/mig.yml
Outdated
- name: Prepare | ||
id: prepare | ||
run: | | ||
DOCKER_IMAGE=chartmuseum/chartmuseum |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the issue is this probably needs to be ghcr.io/helm/chartmuseum
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay i see
Signed-off-by: scnace <[email protected]>
69f2c25
to
1f5d700
Compare
Signed-off-by: scnace [email protected]
Per #391