chore(deps): updated release versions for v0.2.9 (#105) #72
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Charts | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
# Fetch entire history. Required for chart-releaser; see https://github.com/helm/chart-releaser-action/issues/13#issuecomment-602063896 | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Install Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.8.1 | |
- name: Add dependencies | |
run: | | |
helm repo add kratos https://k8s.ory.sh/helm/charts | |
helm repo add elasticsearch https://helm.elastic.co | |
helm repo add postgresql https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami | |
helm repo add filebeat https://helm.elastic.co | |
helm repo add contour https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami | |
helm repo add fluent https://fluent.github.io/helm-charts | |
- name: Run chart-releaser | |
uses: helm/chart-releaser-action@a3454e46a6f5ac4811069a381e646961dda2e1bf | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_SKIP_EXISTING: "true" |