Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
gwang committed Mar 7, 2024
2 parents 172bd78 + 6f83ddb commit 5222e14
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
if: github.repository == 'nerdswords/helm-charts'
permissions:
contents: write
packages: write # needed for ghcr access
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -34,6 +35,24 @@ jobs:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_RELEASE_NAME_TEMPLATE: "yace-helm-chart-{{ .Version }}"

# see https://github.com/helm/chart-releaser/issues/183
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push charts to GHCR
run: |
shopt -s nullglob
for pkg in .cr-release-packages/*; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" "oci://ghcr.io/${GITHUB_REPOSITORY_OWNER}/charts"
done
sync-readme:
needs: [release]
permissions:
Expand Down
4 changes: 2 additions & 2 deletions charts/yet-another-cloudwatch-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: yet-another-cloudwatch-exporter
description: Yace - Yet Another CloudWatch Exporter
type: application
version: 0.28.0
appVersion: "v0.57.0"
version: 0.29.0
appVersion: "v0.57.1"
home: https://github.com/nerdswords/helm-charts
sources:
- https://github.com/nerdswords/yet-another-cloudwatch-exporter
Expand Down
2 changes: 1 addition & 1 deletion charts/yet-another-cloudwatch-exporter/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yet-another-cloudwatch-exporter

![Version: 0.28.0](https://img.shields.io/badge/Version-0.28.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.57.0](https://img.shields.io/badge/AppVersion-v0.57.0-informational?style=flat-square)
![Version: 0.29.0](https://img.shields.io/badge/Version-0.29.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.57.1](https://img.shields.io/badge/AppVersion-v0.57.1-informational?style=flat-square)

Yace - Yet Another CloudWatch Exporter

Expand Down

0 comments on commit 5222e14

Please sign in to comment.