Skip to content

Commit

Permalink
Version 0.0.3
Browse files Browse the repository at this point in the history
Merge pull request #4 from fluidos-project/devel
  • Loading branch information
ggari-robotnik authored Jul 25, 2024
2 parents 2c4d114 + 5bdd086 commit 56530a6
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/helm-releaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Release Charts

on:
push:
tags:
- '*' # Triggers on any tag push
workflow_dispatch:

jobs:
release:
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 "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 56530a6

Please sign in to comment.