Skip to content

Commit

Permalink
release new chart version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Sep 29, 2023
1 parent 3bccb42 commit feba2e9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 25 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Chart

on:
push:
branches:
- main
jobs:
publish:
name: Publish helm chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
id: release
uses: helm/[email protected]
with:
config: "./.github/configs/cr.yaml"
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
23 changes: 0 additions & 23 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,6 @@ jobs:
go-version-file: go.mod
check-latest: true
- run: PATH=$PATH:$GOPATH/bin make test

publish:
name: Publish helm chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
id: release
uses: helm/[email protected]
with:
config: "./.github/configs/cr.yaml"
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

publish-docker:
name: Build and push agent container
runs-on: ubuntu-20.04
Expand Down
4 changes: 2 additions & 2 deletions charts/deployment-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: deployment-operator
description: creates a new instance of the plural deployment operator
type: application
version: 0.1.2
appVersion: "0.1.2"
version: 0.1.3
appVersion: "0.1.3"
maintainers:
- name: Plural
url: https://www.plural.sh

0 comments on commit feba2e9

Please sign in to comment.