Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

feat: add env variables #6

feat: add env variables

feat: add env variables #6

Workflow file for this run

name: Release Charts
on:
workflow_dispatch:
push:
branches:
- main
jobs:
release:
# depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: azure/setup-helm@v3
- name: Package and Push Chart
run: |
helm plugin install https://github.com/chartmuseum/helm-push.git
helm repo add chartmuseum https://charts.ietf.org
helm cm-push --username="${{secrets.HELM_REPO_USERNAME}}" --password="${{secrets.HELM_REPO_PASSWORD}}" charts/analytics chartmuseum
helm repo remove chartmuseum