Skip to content

Commit 9ab65b2

Browse files
committed
chore: add chart releaser action and increase version
1 parent 1c25dd7 commit 9ab65b2

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.github/workflows/release.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
release:
10+
permissions:
11+
contents: write
12+
runs-on: ubuntu-20.04
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Configure Git
20+
run: |
21+
git config user.name "$GITHUB_ACTOR"
22+
git config user.email "[email protected]"
23+
24+
- name: Run chart-releaser
25+
uses: helm/[email protected]
26+
env:
27+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

charts/invenio/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords:
1212
- multimedia-library
1313
- multimedia-repository
1414
type: application
15-
version: 0.2.1
15+
version: 0.3.0
1616
dependencies:
1717
- name: opensearch
1818
condition: opensearch.enabled

0 commit comments

Comments
 (0)