ci: fix typo in push chart action

This commit is contained in:
a5r0n
2023-12-09 19:36:34 +02:00
parent 8a0220d491
commit 307ad23073
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -24,11 +24,11 @@ jobs:
helm push n8n-*.tgz oci://${{ vars.OCI_REGISTRY }}/${{ vars.OCI_REPOSITORY }}
- name: Update README.md with Helm chart version
run: |
sed -i "s/--version .*/--version: $(grep -oP '^version: \K.*' n8n/Chart.yaml)/" README.md
sed -i "s/--version .*/--version $(grep -oP '^version: \K.*' n8n/Chart.yaml)/" README.md
- name: Commit and push changes
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
git add README.md
git commit -m "relase: Update Helm chart version to $(grep -oP '^version \K.*' n8n/Chart.yaml)"
git commit -m "release: Update Helm chart version to $(grep -oP '^version: \K.*' n8n/Chart.yaml)"
git push
+1 -1
View File
@@ -12,7 +12,7 @@ so install is simple:
```bash
export HELM_EXPERIMENTAL_OCI=1
helm install n8n oci://ghcr.io/a5r0n/charts/n8n --version: 0.2.7
helm install n8n oci://ghcr.io/a5r0n/charts/n8n --version 0.2.7
```
example values: