Skip to content
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

Fixed version problem #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Using Token Auth with OCI Registry:
```yaml
steps:
- name: Push Helm chart to OCI compatible registry (Github)
uses: bsord/helm-push@4.2.0
uses: bsord/helm-push@v4.1.0
with:
useOCIRegistry: true
registry-url: oci://ghcr.io/${{ github.repository }}
Expand All @@ -30,7 +30,7 @@ steps:
command: aws ecr get-login-password

- name: Push Helm chart to Amazon Elastic Container Registry (ECR)
uses: bsord/helm-push@4.2.0
uses: bsord/helm-push@v4.1.0
with:
useOCIRegistry: true
registry-url: oci://123456789123.dkr.ecr.eu-west-1.amazonaws.com
Expand All @@ -43,7 +43,7 @@ Using Password Auth:
```yaml
steps:
- name: Push Helm Chart to ChartMuseum
uses: bsord/helm-push@4.2.0
uses: bsord/helm-push@v4.1.0
with:
username: ${{ secrets.HELM_USERNAME }}
password: ${{ secrets.HELM_PASSWORD }}
Expand All @@ -56,7 +56,7 @@ Using Token Auth:
```yaml
steps:
- name: Push Helm Chart to ChartMuseum
uses: bsord/helm-push@4.2.0
uses: bsord/helm-push@v4.1.0
with:
access-token: ${{ secrets.HELM_API_KEY }}
registry-url: 'https://h.cfcr.io/user_or_org/reponame'
Expand Down