Skip to content

Commit

Permalink
chore: add chart releaser action and increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
egabancho committed Dec 3, 2024
1 parent 1c25dd7 commit 9ab65b2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release Charts

on:
push:
tags:
- v*

jobs:
release:
permissions:
contents: write
runs-on: ubuntu-20.04
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 }}"
2 changes: 1 addition & 1 deletion charts/invenio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords:
- multimedia-library
- multimedia-repository
type: application
version: 0.2.1
version: 0.3.0
dependencies:
- name: opensearch
condition: opensearch.enabled
Expand Down

0 comments on commit 9ab65b2

Please sign in to comment.