Skip to content

Commit 8699bc7

Browse files
release v0.4.3 (#104)
Some small tweaks and fixes
1 parent 8ec88e6 commit 8699bc7

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,31 @@ jobs:
7474
env:
7575
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} # required
7676
if: always()
77+
bump:
78+
name: Bump Chart Version
79+
runs-on: ubuntu-20.04
80+
needs: [release]
81+
permissions:
82+
contents: write
83+
discussions: write
84+
pull-requests: write
85+
steps:
86+
- name: Checkout
87+
uses: actions/checkout@v3
88+
with:
89+
persist-credentials: false
90+
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
91+
- name: update chart
92+
uses: pluralsh/[email protected]
93+
with:
94+
path: ./charts/deployment-operator
95+
release: ${{github.ref_name}}
96+
- name: Create Pull Request
97+
uses: peter-evans/create-pull-request@v5
98+
with:
99+
title: Release ${{github.ref_name}}
100+
body: Automated Pull Request to release ${{github.ref_name}}
101+
commit-message: Updated chart to release ${{github.ref_name}}
102+
labels: release
103+
base: master
104+
branch: release-${{github.ref_name}}

charts/deployment-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: deployment-operator
33
description: creates a new instance of the plural deployment operator
44
type: application
5-
version: 0.4.2
6-
appVersion: "0.4.2"
5+
version: 0.4.3
6+
appVersion: "0.4.3"
77
maintainers:
88
- name: Plural
99
url: https://www.plural.sh

0 commit comments

Comments
 (0)