mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-21 05:40:35 +00:00
chart-releaser looks at the project history to determine whether a chart changed, we mustn't limit the fetch depth. Signed-off-by: Stephen Kitt <skitt@redhat.com>
28 lines
546 B
YAML
28 lines
546 B
YAML
---
|
|
name: Release Charts
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- 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.1.0
|
|
env:
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|