Skip to content

chore(deps): update all non-major dependencies (#317) #159

chore(deps): update all non-major dependencies (#317)

chore(deps): update all non-major dependencies (#317) #159

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
paths:
- "charts/**"
# Declare default permissions as read only.
permissions: read-all
jobs:
release:
runs-on: ubuntu-22.04
container: ghcr.io/chgl/kube-powertools:v2.2.66@sha256:cb8ce85ffe081527c08c740f489daaf8aaf4cdbe1fdceb4d48b1a25b9678941e
permissions:
contents: write
packages: write
id-token: write
steps:
- name: Add workspace as safe directory
run: |
git config --global --add safe.directory /__w/charts/charts
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Add Helm chart dependency repos
run: |
helm repo add codecentric https://codecentric.github.io/helm-charts
helm repo add hapifhir https://hapifhir.github.io/hapi-fhir-jpaserver-starter
- name: Update dependencies
run: find charts/ ! -path charts/ -maxdepth 1 -type d -exec helm dependency update {} \;
- name: Generate changelogs
run: generate-chart-changelog.sh
- name: Run chart-releaser
uses: helm/chart-releaser-action@a917fd15b20e8b64b94d9158ad54cd6345335584 # v1.6.0
with:
config: .github/ct/ct.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Login to GitHub Container Registry
run: |
# used by helm
echo "${GHCR_REGISTRY_PASSWORD}" | helm registry login ghcr.io --username ${{ github.actor }} --password-stdin
# used by cosign
echo "${GHCR_REGISTRY_PASSWORD}" | crane auth login ghcr.io --username ${{ github.actor }} --password-stdin
env:
GHCR_REGISTRY_PASSWORD: "${{ secrets.GITHUB_TOKEN }}"
- name: Push Charts to ghcr.io
run: |
for pkg in .cr-release-packages/*; do
if [ -z "${pkg:-}" ]; then
break
fi
helm push "${pkg}" oci://ghcr.io/${{ github.repository }} 2> .digest
OCI_ARTIFACT_PATH="$(awk -F "[, ]+" '/Pushed/{print $NF}' < .digest)"
OCI_ARTIFACT_DIGEST="$(awk -F "[, ]+" '/Digest/{print $NF}' < .digest)"
cosign sign --yes "${OCI_ARTIFACT_PATH}@${OCI_ARTIFACT_DIGEST}"
done