Skip to content

Commit

Permalink
Create initial helm chart and workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Klick <nathan@swirldslabs.com>
  • Loading branch information
nathanklick committed Dec 21, 2022
1 parent 6facacf commit e9058f8
Show file tree
Hide file tree
Showing 8 changed files with 968 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/flow-release-charts.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Release Charts

on:
push:
branches:
- main

permissions:
contents: write

jobs:
publish:
name: Publish Charts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Configure Git Actor
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.10.3

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.1
env:
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit e9058f8

Please sign in to comment.