Skip to content

Commit

Permalink
ci: fix typo in push chart action
Browse files Browse the repository at this point in the history
  • Loading branch information
a5r0n committed Dec 9, 2023
1 parent 8a0220d commit 307ad23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 307ad23

Please sign in to comment.