mirror of
https://github.com/cert-manager/webhook-example.git
synced 2025-07-01 22:35:49 +02:00
Update helm releaser and chart version.
This commit is contained in:
parent
9931f4db92
commit
116b2ff32a
3 changed files with 34 additions and 1 deletions
33
.github/workflows/release-chart.yaml
vendored
Normal file
33
.github/workflows/release-chart.yaml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: Release Charts
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- "charts/dnsimple/Chart.yaml"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get chart version
|
||||
id: chart_version
|
||||
uses: mikefarah/yq@d2f1ae9db722ac6b0702dd7f8a08dd22722d8c2d # v4.33.3
|
||||
with:
|
||||
cmd: yq eval '.version' './charts/metrics-server/Chart.yaml'
|
||||
|
||||
- name: Configure Git
|
||||
run: |
|
||||
git config user.name "$GITHUB_ACTOR"
|
||||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
|
||||
- name: Run chart-releaser
|
||||
uses: helm/chart-releaser-action@v1.5.0
|
||||
env:
|
||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
@ -2,7 +2,7 @@ apiVersion: v1
|
|||
appVersion: "0.0.1"
|
||||
description: cert-manager webhook solver for ACME DNS01 challenge via DNSimple
|
||||
name: cert-manager-webhook-dnsimple
|
||||
version: 0.1.1
|
||||
version: 0.0.1
|
||||
home: https://github.com/jahanson/cert-manager-webhook-dnsimple
|
||||
sources:
|
||||
- https://github.com/jahanson/cert-manager-webhook-dnsimple
|
||||
|
|
Loading…
Reference in a new issue