Skip to content

Commit

Permalink
Merge branch 'main' of github.com:maxion-tech/devops-helm into main
Browse files Browse the repository at this point in the history
  • Loading branch information
gofmaxion committed Jul 29, 2023
2 parents cea486c + 5f80ec5 commit 99f0da4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This is a basic workflow to help you get started with Actions
name: Release Charts

on:
push:
branches:
- main

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

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.MXT_DEVOPS_PIPELINE_TOKEN }}"

0 comments on commit 99f0da4

Please sign in to comment.