Skip to content

Commit a96d4af

Browse files
authored
fix branch name for chart release workflow (#104)
* fix branch name for chart release workflow * update helm chart and appVersion to 1.2.0
1 parent 67a2d95 commit a96d4af

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.github/workflows/chart.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ name: Release Charts
33
on:
44
push:
55
branches:
6-
- main
6+
- master
7+
- fix/chart-release
78

89
jobs:
910
release:
1011
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
1114
steps:
1215
- name: Checkout
1316
uses: actions/checkout@v2
@@ -20,12 +23,12 @@ jobs:
2023
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
2124
2225
- name: Install Helm
23-
uses: azure/setup-helm@v1
26+
uses: azure/setup-helm@v3
2427
with:
25-
version: v3.8.1
28+
version: v3.10.0
2629

2730
- name: Run chart-releaser
28-
uses: helm/chart-releaser-action@v1.4.0
31+
uses: helm/chart-releaser-action@v1.4.1
2932
with:
3033
charts_dir: charts
3134
env:

charts/ext-postgres-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ type: application
77
# This is the chart version. This version number should be incremented each time you make changes
88
# to the chart and its templates, including the app version.
99
# Versions are expected to follow Semantic Versioning (https://semver.org/)
10-
version: 0.1.2
10+
version: 1.2.0
1111

1212
# This is the version number of the application being deployed. This version number should be
1313
# incremented each time you make changes to the application. Versions are not expected to
1414
# follow Semantic Versioning. They should reflect the version the application is using.
1515
# It is recommended to use it with quotes.
16-
appVersion: "1.1.1"
16+
appVersion: "1.2.0"

0 commit comments

Comments
 (0)